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

body {
    font-family: 'Petit Formal Script', 'Arya', 'Noto Sans Devanagari', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    overflow: hidden;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    min-height: 100vh;
}

#emoji-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.emoji {
    position: absolute;
    font-size: 32px;
    opacity: 0.15;
    transition: all 0.3s ease;
    pointer-events: none;
}

.emoji:hover {
    opacity: 0.5;
    transform: scale(1.3);
}

.intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.intro-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}

.intro-content {
    padding: 40px;
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.intro-title {
    font-family: 'Satisfy', cursive;
    font-size: 2.5rem;
    color: #374151;
    margin-bottom: 10px;
    font-weight: normal;
}

.intro-question {
    font-family: 'Petit Formal Script', cursive;
    font-size: 1.4rem;
    color: #78716c;
    margin-bottom: 30px;
}

.mood-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: nowrap;
    margin-bottom: 30px;
}

.mood-btn {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 16px 24px;
    font-family: 'Petit Formal Script', cursive;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 100px;
    color: #374151;
}

.mood-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.95);
}

.mood-btn:active {
    transform: translateY(0) scale(0.98);
}

.mood-emoji {
    font-size: 2rem;
    display: block;
    animation: heartFloat 3s ease-in-out infinite;
}

@keyframes heartFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.mood-label {
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'Petit Formal Script', cursive;
}

.mood-response {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 20px 30px;
    font-size: 1.1rem;
    color: #374151;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    font-family: 'Petit Formal Script', 'Arya', 'Noto Sans Devanagari', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.mood-response.show {
    opacity: 1;
    transform: translateY(0);
}

.sad-options {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.sad-intro {
    font-family: 'Satisfy', cursive;
    font-size: 1.6rem;
    color: #374151;
    margin-bottom: 20px;
}

.ecommerce-offer {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 30px;
    margin: 0 auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.product-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
    text-align: center;
}

.product-title {
    display: block;
    font-size: 1.6rem;
    font-weight: 600;
    color: #92400e;
    margin-bottom: 15px;
    font-family: 'Petit Formal Script', 'Arya', 'Noto Sans Devanagari', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.product-price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #b45309;
    margin-bottom: 15px;
    font-family: 'Petit Formal Script', 'Arya', 'Noto Sans Devanagari', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.product-badge {
    background: linear-gradient(135deg, #dc2626, #b45309);
    color: white;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-left: 10px;
    font-family: 'Petit Formal Script', 'Arya', 'Noto Sans Devanagari', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.product-description {
    font-size: 1rem;
    color: #78716c;
    margin-bottom: 25px;
    text-align: left;
    font-family: 'Petit Formal Script', 'Arya', 'Noto Sans Devanagari', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.product-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 20px 0;
}

.product-features li {
    padding: 12px 0;
    color: #5a4a42;
    font-size: 0.95rem;
    font-family: 'Petit Formal Script', 'Arya', 'Noto Sans Devanagari', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.action-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.buy-button {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.8), rgba(180, 83, 9, 0.9));
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-family: 'Petit Formal Script', 'Arya', 'Noto Sans Devanagari', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.buy-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.4);
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.95), rgba(180, 83, 9, 1));
}

.buy-button:active {
    transform: translateY(0) scale(0.98);
}

.or-divider {
    font-size: 1rem;
    color: #9ca3af;
    font-weight: 600;
    margin: 0;
    font-family: 'Petit Formal Script', 'Arya', 'Noto Sans Devanagari', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.contact-button {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(217, 119, 6, 0.3);
    border-radius: 12px;
    padding: 14px 24px;
    font-family: 'Petit Formal Script', 'Arya', 'Noto Sans Devanagari', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    color: #d97706;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
}

.contact-button:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(217, 119, 6, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.contact-button:active {
    transform: translateY(0);
}

.enter-love-btn {
    background: rgba(217, 119, 6, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(180, 83, 9, 0.4);
    border-radius: 12px;
    padding: 14px 32px;
    font-family: 'Petit Formal Script', 'Arya', 'Noto Sans Devanagari', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
    transition: all 0.3s ease;
    color: white;
    position: relative;
    overflow: hidden;
}

.enter-love-btn::before {
    content: '✨';
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.2;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 0.2;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.1);
    }
}

.enter-love-btn:hover {
    background: rgba(180, 83, 9, 0.95);
    border-color: rgba(180, 83, 9, 0.6);
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.5);
    transform: translateY(-3px);
}

.enter-love-btn:active {
    transform: translateY(0) scale(0.98);
}

.custom-message-section {
    padding: 25px;
    margin-top: 30px;
}

.custom-message-label {
    font-family: 'Petit Formal Script', cursive;
    font-size: 1.2rem;
    color: #374151;
    margin-bottom: 12px;
    text-align: center;
}

.custom-message-input {
    width: 100%;
    min-height: 100px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-family: 'Petit Formal Script', 'Arya', 'Noto Sans Devanagari', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-size: 1rem;
    color: #374151;
    resize: vertical;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.custom-message-input:focus {
    outline: none;
    border-color: rgba(217, 119, 6, 0.5);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.2);
}

.send-whatsapp-btn {
    width: 100%;
    background: rgba(217, 119, 6, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(217, 119, 6, 0.4);
    border-radius: 12px;
    padding: 14px 24px;
    font-family: 'Petit Formal Script', 'Arya', 'Noto Sans Devanagari', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
    transition: all 0.3s ease;
    color: white;
    margin-top: 12px;
}

.send-whatsapp-btn:hover {
    background: rgba(180, 83, 9, 1);
    border-color: rgba(180, 83, 9, 0.6);
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.5);
    transform: translateY(-3px);
}

.send-whatsapp-btn:active {
    transform: translateY(0);
}

.whatsapp-link {
    color: #d97706;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-top: 10px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(217, 119, 6, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(217, 119, 6, 0.5);
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.card {
    background: linear-gradient(135deg, rgba(255, 235, 238, 0.2) 0%, rgba(255, 228, 225, 0.05) 100%);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        0 10px 40px 0 rgba(255, 182, 193, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(255, 182, 193, 0.3);
    padding: 40px;
    max-width: 700px;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card.active {
    opacity: 1;
    transform: translateY(0);
}

.card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05));
    animation: shimmer 8s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.card-top {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.image-container {
    flex: 0 0 200px;
}

.image-container img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(217, 119, 6, 0.3);
}

.text-container {
    flex: 1;
    min-width: 250px;
    display: flex;
    align-items: top;
    padding-top: 2%;
}

.text-container p {
    font-family: 'Petit Formal Script', 'Arya', 'Noto Sans Devanagari', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #5a4a42;
    text-align: left;
}

.lyrics-container {
    text-align: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.lyrics-container p {
    font-family: 'Petit Formal Script', 'Arya', 'Noto Sans Devanagari', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-size: 1.2rem;
    color: #92400e;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.lyrics-container p.fade-in {
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.controls {
    position: fixed;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    align-items: center;
    z-index: 100;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 12px 24px;
    font-family: 'Petit Formal Script', 'Arya', 'Noto Sans Devanagari', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #374151;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.nav-btn:active {
    transform: translateY(0) scale(0.98);
}

.nav-btn .btn-icon {
    font-size: 1.4rem;
}

.nav-btn .btn-text {
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Petit Formal Script', 'Arya', 'Noto Sans Devanagari', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.mute-btn {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d97706;
}

.mute-btn:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.mute-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .intro-content {
        padding: 30px 20px;
    }

    .card {
        padding: 25px;
        max-width: 650px;
    }

    .card-top {
        gap: 20px;
    }

    .image-container {
        flex: 0 0 150px;
    }

    .image-container img {
        width: 150px;
        height: 150px;
    }

    .text-container p {
        font-size: 1.2rem;
    }

    .lyrics-container p {
        font-size: 1.3rem;
    }

    .controls {
        bottom: 50px;
        gap: 15px;
        padding: 0 10px;
    }

    .nav-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .nav-btn .btn-icon {
        font-size: 1.2rem;
    }

    .nav-btn .btn-text {
        font-size: 0.85rem;
    }

    .mute-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .ecommerce-offer {
        padding: 25px 20px;
    }

    .product-card {
        padding: 20px;
    }

    .action-buttons {
        gap: 10px;
        margin-top: 20px;
        flex-direction: column;
        align-items: center;
    }

    .buy-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .contact-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .sad-intro {
        font-size: 1.4rem;
    }

    .intro-title {
        font-size: 2rem;
    }

    .product-title {
        font-size: 1.4rem;
    }

    .product-price {
        font-size: 1.7rem;
    }

    .product-badge {
        font-size: 0.8rem;
        padding: 5px 10px;
    }

    .product-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .product-features li {
        font-size: 0.85rem;
        padding: 8px 0;
    }
}

.dedication-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 20px;
    text-align: center;
    z-index: 2000;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.dedication-footer p {
    font-family: 'Petit Formal Script', cursive;
    font-size: 0.9rem;
    color: #5a4a42;
    margin: 0;
}