@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Montserrat:wght@400;600&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Montserrat', sans-serif;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1517446342793-157948a39158?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
    filter: brightness(0.7) blur(2px);
    z-index: -1;
}

.wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.propose-card {
    background: rgba(255, 255, 255, 0.9);
    width: 100%;
    max-width: 450px;
    padding: 40px 30px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    text-align: center;
    animation: fadeIn 0.8s ease;
}

.rom-majnu-header {
    font-family: 'Great Vibes', cursive;
    font-size: 24px;
    color: #c2185b;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
}

.heart-icon {
    font-size: 20px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.visual-area img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: opacity 0.8s ease-in-out;
}

.heading {
    font-family: 'Great Vibes', cursive;
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
}

.message {
    font-size: 16px;
    color: #555;
    height: 50px;
    transition: opacity 0.5s;
}

.btn-group {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

button {
    cursor: pointer;
    border: none;
    transition: 0.3s;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 30px;
}

.yes-btn {
    background: linear-gradient(45deg, #ff6b6b, #ee5282);
    color: white;
    flex: 1;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.no-btn {
    min-width: 120px;
    transition: left 0.2s ease, top 0.2s ease;
    z-index: 999;
}

.wa-btn {
    background: #25D366;
    color: white;
    margin-top: 20px;
    width: 100%;
}

.hidden { display: none; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
    .propose-card { padding: 30px 20px; }
    .heading { font-size: 28px; }
}