/* ============================================
   💖 LOVE WEBSITE - COMPLETE STYLESHEET
   Made with Love 💕 - Superz Smooth Edition
   ============================================ */
/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    min-height: 100vh;
    overflow-x: hidden;
    color: #fff;
    line-height: 1.6;
}
/* ===== UTILITY CLASSES ===== */
.hidden {
    display: none !important;
}
.screen {
    min-height: 100vh;
    width: 100%;
    position: relative;
}
/* ===== SMOOTH TRANSITIONS BASE ===== */
* {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
/* ===== BUTTONS BASE ===== */
.btn {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-tap-highlight-color: transparent;
    outline: none;
    user-select: none;
}
/* ============================================
   ✨ SCREEN 1: START SCREEN
   ============================================ */
#startScreen {
    background: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 50%, #0f0c29 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}
/* Stars Background */
.stars-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20px 30px, #fff, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(2px 2px at 160px 120px, rgba(255,255,255,0.9), transparent),
        radial-gradient(1px 1px at 230px 80px, #fff, transparent),
        radial-gradient(2px 2px at 300px 150px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 50px 160px, #fff, transparent),
        radial-gradient(2px 2px at 120px 200px, rgba(255,255,255,0.8), transparent);
    background-size: 350px 250px;
    animation: twinkle 5s ease-in-out infinite;
}
@keyframes twinkle {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}
/* Start Content */
.start-content {
    text-align: center;
    z-index: 10;
    padding: 40px 20px;
    animation: fadeInUp 1s ease;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.start-emoji {
    font-size: 100px;
    animation: floatEmoji 4s ease-in-out infinite;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 40px rgba(255, 107, 157, 0.6));
}
@keyframes floatEmoji {
    0%, 100% {
        transform: translateY(0) rotate(-5deg) scale(1);
    }
    50% {
        transform: translateY(-25px) rotate(5deg) scale(1.05);
    }
}
.start-title {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    color: #ff6b9d;
    margin-bottom: 15px;
    text-shadow: 0 0 40px rgba(255, 107, 157, 0.6);
    animation: glowText 3s ease-in-out infinite alternate;
}
@keyframes glowText {
    from {
        text-shadow: 0 0 30px rgba(255, 107, 157, 0.5);
        filter: brightness(1);
    }
    to {
        text-shadow: 0 0 60px rgba(255, 107, 157, 0.9), 0 0 100px rgba(255, 107, 157, 0.4);
        filter: brightness(1.1);
    }
}
.start-subtitle {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.3rem;
    color: #ffecd2;
    margin-bottom: 50px;
    opacity: 0.9;
    letter-spacing: 2px;
    animation: fadeIn 1s ease 0.3s both;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 0.9; }
}
.btn-start {
    padding: 22px 65px;
    font-size: 1.4rem;
    background: linear-gradient(45deg, #ff6b9d, #c44569, #ff6b9d);
    background-size: 200% 200%;
    color: white;
    box-shadow: 0 15px 50px rgba(255, 107, 157, 0.5);
    animation: pulseBtn 2.5s ease-in-out infinite, gradientShift 4s ease infinite;
    letter-spacing: 1px;
}
@keyframes pulseBtn {
    0%, 100% {
        box-shadow: 0 15px 50px rgba(255, 107, 157, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 20px 70px rgba(255, 107, 157, 0.8);
        transform: scale(1.02);
    }
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.btn-start:hover,
.btn-start:active {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 25px 80px rgba(255, 107, 157, 0.7);
}
.btn-start span {
    display: inline-block;
    animation: heartPulse 1.2s ease-in-out infinite;
}
@keyframes heartPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}
/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}
/* ============================================
   💕 SCREEN 2: LOVE QUESTION
   ============================================ */
#loveScreen {
    background: linear-gradient(135deg, #2d1b4e 0%, #1a0a2e 50%, #16213e 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
}
.love-content {
    text-align: center;
    z-index: 10;
    padding: 30px 20px;
    max-width: 550px;
    width: 100%;
    animation: fadeInUp 0.8s ease;
}
/* Cute Character */
.cute-character {
    position: relative;
    margin-bottom: 25px;
    display: inline-block;
}
.character-face {
    font-size: 130px;
    animation: bounceChar 1.5s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 10px 30px rgba(255, 107, 157, 0.4));
}
@keyframes bounceChar {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
}
.character-face.crying {
    animation: shakeCry 0.4s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(116, 185, 255, 0.5));
}
@keyframes shakeCry {
    0%, 100% { transform: translateX(0) rotate(0); }
    25% { transform: translateX(-12px) rotate(-8deg); }
    75% { transform: translateX(12px) rotate(8deg); }
}
.character-face.happy {
    animation: jumpHappy 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 10px 40px rgba(255, 215, 0, 0.6));
}
@keyframes jumpHappy {
    0%, 100% { transform: translateY(0) scale(1) rotate(0); }
    50% { transform: translateY(-60px) scale(1.4) rotate(10deg); }
}
.character-blush {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 30px;
    background: radial-gradient(ellipse, rgba(255, 107, 157, 0.5) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}
.cute-character.blushing .character-blush {
    opacity: 1;
}
/* Love Question Text */
.love-question {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    color: #ff6b9d;
    margin-bottom: 10px;
    text-shadow: 0 0 40px rgba(255, 107, 157, 0.6);
    animation: glowText 3s ease-in-out infinite alternate;
}
.love-subtext {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.2rem;
    color: #ffecd2;
    margin-bottom: 40px;
    opacity: 0.9;
    transition: all 0.4s ease;
}
/* Buttons Wrapper */
.buttons-wrapper {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
    min-height: 80px;
    align-items: center;
}
/* Yes Button */
.btn-yes {
    padding: 20px 50px;
    font-size: 1.4rem;
    background: linear-gradient(45deg, #00b894, #00cec9, #00b894);
    background-size: 200% 200%;
    color: white;
    box-shadow: 0 12px 40px rgba(0, 184, 148, 0.5);
    animation: pulseGreen 2.5s ease-in-out infinite, gradientShift 4s ease infinite;
}
@keyframes pulseGreen {
    0%, 100% {
        box-shadow: 0 12px 40px rgba(0, 184, 148, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 18px 60px rgba(0, 184, 148, 0.7);
        transform: scale(1.02);
    }
}
.btn-yes:hover,
.btn-yes:active {
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 20px 60px rgba(0, 184, 148, 0.7);
}
/* No Button */
.btn-no {
    padding: 20px 50px;
    font-size: 1.4rem;
    background: linear-gradient(45deg, #e17055, #d63031, #e17055);
    background-size: 200% 200%;
    color: white;
    box-shadow: 0 12px 40px rgba(225, 112, 85, 0.5);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    animation: gradientShift 4s ease infinite;
}
.btn-no.running {
    position: fixed;
    z-index: 10000;
}
/* Cry Message */
.cry-message {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: #74b9ff;
    min-height: 45px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 0 20px rgba(116, 185, 255, 0.6);
}
.cry-message.show {
    opacity: 1;
    animation: popIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes popIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    50% {
        transform: translateY(-5px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
/* Floating Hearts - Love Screen */
.floating-hearts {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}
.floating-heart {
    position: absolute;
    font-size: 24px;
    opacity: 0.6;
    animation: floatHeart 8s ease-in-out infinite;
}
@keyframes floatHeart {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-40px) translateX(25px) rotate(15deg) scale(1.1);
    }
    50% {
        transform: translateY(-20px) translateX(-25px) rotate(-10deg) scale(0.95);
    }
    75% {
        transform: translateY(-50px) translateX(15px) rotate(10deg) scale(1.05);
    }
}
/* ============================================
   🎉 SCREEN 3: MAIN CONTENT
   ============================================ */
#mainContent {
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    padding-bottom: 50px;
    min-height: 100vh;
}
/* Background Elements */
.bg-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}
.bg-heart {
    position: absolute;
    opacity: 0.5;
    animation: riseUp 15s linear infinite;
}
@keyframes riseUp {
    0% {
        transform: translateY(100vh) rotate(0deg) scale(0.8);
        opacity: 0;
    }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% {
        transform: translateY(-100px) rotate(360deg) scale(1.2);
        opacity: 0;
    }
}
.bg-sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: sparkle 4s ease-in-out infinite;
}
@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
    50% { opacity: 1; transform: scale(1) rotate(180deg); }
}
.bg-flower {
    position: absolute;
    font-size: 22px;
    opacity: 0.4;
    animation: sway 6s ease-in-out infinite;
}
@keyframes sway {
    0%, 100% { transform: rotate(-20deg) scale(1); }
    50% { transform: rotate(20deg) scale(1.1); }
}
/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    position: relative;
    z-index: 10;
}
.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease;
}
.hero-badge {
    display: inline-block;
    padding: 14px 40px;
    background: rgba(255, 107, 157, 0.15);
    border: 1px solid rgba(255, 107, 157, 0.4);
    border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    color: #ffecd2;
    margin-bottom: 25px;
        backdrop-filter: blur(10px);
    animation: fadeInDown 1s ease;
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-title {
    font-family: 'Dancing Script', cursive;
    font-size: 5rem;
    background: linear-gradient(45deg, #ff6b9d, #ffecd2, #ff9ff3, #ffd700, #ff6b9d);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 6s ease infinite;
    margin-bottom: 20px;
    line-height: 1.2;
    filter: drop-shadow(0 0 30px rgba(255, 107, 157, 0.3));
}
@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.hero-subtitle {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.8rem;
    color: #ffd700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
    margin-bottom: 40px;
    animation: glowText 3s ease-in-out infinite alternate;
}
.hero-hearts {
    font-size: 2.8rem;
    animation: fadeIn 1s ease 0.5s both;
}
.hero-hearts span {
    display: inline-block;
    margin: 0 10px;
    animation: heartPulse 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(255, 107, 157, 0.5));
}
.hero-hearts span:nth-child(1) { animation-delay: 0s; }
.hero-hearts span:nth-child(2) { animation-delay: 0.15s; }
.hero-hearts span:nth-child(3) { animation-delay: 0.3s; }
.hero-hearts span:nth-child(4) { animation-delay: 0.45s; }
.hero-hearts span:nth-child(5) { animation-delay: 0.6s; }
/* ===== MESSAGES CONTAINER ===== */
.messages-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 10;
}
/* ===== MESSAGE CARDS ===== */
.message-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 35px;
    padding: 55px 45px;
    margin-bottom: 50px;
    border: 1px solid rgba(255, 107, 157, 0.2);
    backdrop-filter: blur(15px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(80px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.message-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b9d, #ffd700, #ff9ff3, #00cec9, #ff6b9d);
    background-size: 400% 100%;
    animation: gradientFlow 5s ease infinite;
}
.message-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 107, 157, 0.08) 0%, transparent 60%);
    pointer-events: none;
}
.message-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.message-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 107, 157, 0.5);
}
.card-icon {
    font-size: 65px;
    text-align: center;
    margin-bottom: 25px;
    animation: floatEmoji 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 107, 157, 0.5));
}
.card-title {
    font-family: 'Dancing Script', cursive;
    font-size: 2.8rem;
    color: #ff6b9d;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255, 107, 157, 0.4);
}
.card-divider {
    width: 140px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff6b9d, #ffd700, #ff6b9d, transparent);
    margin: 0 auto 35px;
    border-radius: 3px;
}
.card-text {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.25rem;
    color: #ffecd2;
    text-align: center;
    line-height: 2.3;
    opacity: 0.95;
}
.card-footer {
    text-align: center;
    margin-top: 35px;
    font-size: 2rem;
}
.card-footer span {
    display: inline-block;
    margin: 0 15px;
    animation: floatEmoji 3s ease-in-out infinite;
}
.card-footer span:nth-child(1) { animation-delay: 0s; }
.card-footer span:nth-child(2) { animation-delay: 0.25s; }
.card-footer span:nth-child(3) { animation-delay: 0.5s; }
/* ===== LOVE METER CARD ===== */
.love-meter-card {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1) 0%, rgba(196, 69, 105, 0.08) 100%);
}
.love-meter {
    padding: 35px 0;
}
.meter-label {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.15rem;
    color: #ffecd2;
    text-align: center;
    margin-bottom: 25px;
    opacity: 0.85;
}
.meter-container {
    width: 100%;
    max-width: 480px;
    height: 45px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 107, 157, 0.3);
}
.meter-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ff6b9d, #c44569, #ff6b9d, #ffd700, #ff9ff3, #ff6b9d);
    background-size: 500% 100%;
    border-radius: 30px;
    animation: gradientFlow 4s ease infinite;
    transition: width 4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.meter-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: shimmer 2.5s ease infinite;
}
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
.meter-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 35px;
    background: transparent;
    box-shadow: inset 0 0 25px rgba(255, 107, 157, 0.3);
    pointer-events: none;
}
.meter-result {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #ffd700;
    text-align: center;
    margin-top: 30px;
    opacity: 0;
    transform: scale(0.7);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}
.meter-text {
    margin-top: 25px;
    font-style: italic;
    opacity: 0.9;
}
/* ===== PROMISES LIST ===== */
.promises-list {
    margin-top: 40px;
}
.promise-item {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.2rem;
    color: #ffecd2;
    padding: 18px 28px;
    margin: 15px 0;
    background: rgba(255, 107, 157, 0.1);
    border-radius: 18px;
    border-left: 5px solid #ff6b9d;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.promise-item:hover {
    background: rgba(255, 107, 157, 0.2);
    transform: translateX(20px);
    border-left-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.2);
}
/* ===== NEW YEAR CARD ===== */
.newyear-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 107, 157, 0.08) 100%);
    text-align: center;
    padding: 70px 45px;
}
.fireworks {
    font-size: 3.5rem;
    margin-bottom: 30px;
}
.fireworks span {
    display: inline-block;
    margin: 0 10px;
    animation: firework 2.5s ease-in-out infinite;
}
@keyframes firework {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    25% {
        transform: scale(1.2) rotate(-5deg);
    }
    50% {
        transform: scale(1.4) rotate(10deg);
        opacity: 0.8;
        filter: brightness(1.3);
    }
    75% {
        transform: scale(1.1) rotate(-3deg);
    }
}
.fireworks span:nth-child(1) { animation-delay: 0s; }
.fireworks span:nth-child(2) { animation-delay: 0.2s; }
.fireworks span:nth-child(3) { animation-delay: 0.4s; }
.fireworks span:nth-child(4) { animation-delay: 0.6s; }
.fireworks span:nth-child(5) { animation-delay: 0.8s; }
.newyear-title {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    color: #ffd700;
    text-shadow: 0 0 50px rgba(255, 215, 0, 0.7);
    margin-bottom: 15px;
    animation: glowText 3s ease-in-out infinite alternate;
}
.newyear-subtitle {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.4rem;
    color: #ffecd2;
    margin-bottom: 35px;
    opacity: 0.9;
}
.year-display {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 35px;
}
.year-num {
    font-family: 'Dancing Script', cursive;
    font-size: 4.5rem;
    color: #fff;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 50%, #ff6b9d 100%);
    background-size: 200% 200%;
    width: 90px;
    height: 100px;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.5);
    animation: popIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) backwards, gradientShift 4s ease infinite;
}
@keyframes popIn {
    from {
        transform: scale(0) rotate(-15deg);
        opacity: 0;
    }
    to {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}
.year-num:nth-child(1) { animation-delay: 0.1s; }
.year-num:nth-child(2) { animation-delay: 0.2s; }
.year-num:nth-child(3) { animation-delay: 0.3s; }
.year-num:nth-child(4) { animation-delay: 0.4s; }
/* ===== LOVE DECLARATION ===== */
.love-declaration {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin: 45px 0;
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    color: #ffecd2;
}
.heart-icon {
    font-size: 5rem;
    animation: heartPulse 1s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(255, 107, 157, 0.7));
}
.declaration-text {
    font-size: 1.5rem;
    margin-top: 20px;
    color: #ff9ff3;
    text-shadow: 0 0 20px rgba(255, 159, 243, 0.5);
}
/* ===== HEART CARD (FINAL SECTION) ===== */
.heart-card {
    text-align: center;
    padding: 80px 45px;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.12) 0%, rgba(196, 69, 105, 0.06) 100%);
}
.tap-instruction {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    color: #ff6b9d;
    margin-bottom: 40px;
    animation: bounceText 2s ease-in-out infinite;
    text-shadow: 0 0 25px rgba(255, 107, 157, 0.5);
}
@keyframes bounceText {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.heart-image-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
}
.heart-image {
    width: 240px;
    height: 240px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid #ff6b9d;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: heartbeatImg 2s ease-in-out infinite;
    box-shadow: 0 0 60px rgba(255, 107, 157, 0.6);
    position: relative;
    z-index: 2;
}
@keyframes heartbeatImg {
    0%, 100% { transform: scale(1); }
    10% { transform: scale(1.08); }
    20% { transform: scale(1); }
    30% { transform: scale(1.08); }
    50% { transform: scale(1); }
}
.heart-image:hover,
.heart-image:active {
    transform: scale(1.12);
    box-shadow: 0 0 100px rgba(255, 107, 157, 0.9);
    border-color: #ffd700;
}
.heart-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.5) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
    z-index: 1;
}
@keyframes pulseGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.8;
    }
}
.heart-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}
.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255, 107, 157, 0.4);
    border-radius: 50%;
    animation: ringPulse 4s ease-out infinite;
}
.ring-1 {
    width: 290px;
    height: 290px;
    animation-delay: 0s;
}
.ring-2 {
    width: 340px;
    height: 340px;
    animation-delay: 0.6s;
}
.ring-3 {
    width: 390px;
    height: 390px;
    animation-delay: 1.2s;
}
@keyframes ringPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.6);
        opacity: 0;
    }
}
.heart-subtext {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.15rem;
    color: #ffecd2;
    margin-top: 35px;
    opacity: 0.85;
}
/* ===== FOOTER ===== */
.footer {
    text-align: center;
    padding: 50px 20px;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(255, 107, 157, 0.2);
    margin-top: 60px;
}
.footer p {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.15rem;
    color: #ffecd2;
    opacity: 0.8;
    margin-bottom: 12px;
}
.footer-year {
    font-size: 1rem;
    color: #ff6b9d;
}
/* ============================================
   🎬 GIF MODAL
   ============================================ */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    display: flex;
    justify-content: center;
    align-items: center;
}
.modal.hidden {
    display: none;
}
.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
}
.modal-content {
    position: relative;
    z-index: 3001;
    text-align: center;
    padding: 35px;
    max-width: 90%;
    max-height: 90vh;
    animation: modalPopIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes modalPopIn {
    from {
        opacity: 0;
        transform: scale(0.7) translateY(60px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
.modal-content video {
    max-width: 100%;
    max-height: 60vh;
    border-radius: 25px;
    box-shadow: 0 0 80px rgba(255, 107, 157, 0.6);
    border: 4px solid #ff6b9d;
}
.btn-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    border: none;
    color: white;
    font-size: 2.2rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.5);
    z-index: 3002;
}
.btn-close:hover {
    transform: rotate(90deg) scale(1.15);
    background: linear-gradient(135deg, #c44569, #ff6b9d);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.7);
}
.modal-text {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #ff6b9d;
    margin-top: 30px;
    text-shadow: 0 0 25px rgba(255, 107, 157, 0.6);
    animation: glowText 3s ease-in-out infinite alternate;
}
.modal-hearts {
    font-size: 2.2rem;
    margin-top: 18px;
}
.modal-hearts span {
    display: inline-block;
    margin: 0 10px;
    animation: heartPulse 1.5s ease-in-out infinite;
}
.modal-hearts span:nth-child(1) { animation-delay: 0s; }
.modal-hearts span:nth-child(2) { animation-delay: 0.12s; }
.modal-hearts span:nth-child(3) { animation-delay: 0.24s; }
.modal-hearts span:nth-child(4) { animation-delay: 0.36s; }
.modal-hearts span:nth-child(5) { animation-delay: 0.48s; }
/* ============================================
   📱 RESPONSIVE DESIGN
   ============================================ */
/* Tablets */
@media (max-width: 992px) {
    .hero-title {
        font-size: 4rem;
    }
    .card-title {
        font-size: 2.4rem;
    }
    .message-card {
        padding: 45px 35px;
    }
    .year-num {
        width: 80px;
        height: 90px;
        font-size: 4rem;
    }
}
/* Mobile Phones */
@media (max-width: 768px) {
    /* Start Screen */
    .start-emoji {
        font-size: 80px;
    }
    .start-title {
        font-size: 2.8rem;
    }
    .start-subtitle {
        font-size: 1.15rem;
        margin-bottom: 40px;
    }
    .btn-start {
        padding: 18px 50px;
        font-size: 1.25rem;
    }
    /* Love Screen */
    .character-face {
        font-size: 100px;
    }
    .love-question {
        font-size: 2.8rem;
    }
    .love-subtext {
        font-size: 1.1rem;
        margin-bottom: 35px;
    }
    .btn-yes,
    .btn-no {
        padding: 16px 40px;
        font-size: 1.2rem;
    }
    .cry-message {
        font-size: 1.5rem;
    }
    /* Main Content */
    .hero {
        padding: 50px 20px;
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 60px;
    }
    .hero-badge {
        padding: 12px 30px;
        font-size: 1rem;
    }
    .hero-title {
        font-size: 3.2rem;
    }
    .hero-subtitle {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }
    .hero-hearts {
        font-size: 2.2rem;
    }
    /* Message Cards */
    .messages-container {
        padding: 15px;
    }
    .message-card {
        padding: 40px 28px;
        margin-bottom: 40px;
        border-radius: 28px;
    }
    .card-icon {
        font-size: 55px;
        margin-bottom: 22px;
    }
    .card-title {
        font-size: 2.2rem;
    }
    .card-text {
        font-size: 1.1rem;
        line-height: 2.1;
    }
    .card-footer {
        font-size: 1.7rem;
    }
    /* Love Meter */
    .meter-container {
        height: 38px;
    }
    .meter-result {
        font-size: 2rem;
    }
    /* Promises */
    .promise-item {
        font-size: 1.05rem;
        padding: 14px 22px;
    }
    /* New Year */
    .newyear-card {
        padding: 55px 28px;
    }
    .fireworks {
        font-size: 2.5rem;
    }
    .newyear-title {
        font-size: 3rem;
    }
    .newyear-subtitle {
        font-size: 1.2rem;
    }
    .year-display {
        gap: 12px;
    }
    .year-num {
        width: 70px;
        height: 80px;
        font-size: 3.5rem;
        border-radius: 14px;
    }
    /* Love Declaration */
    .love-declaration {
        font-size: 2.8rem;
        gap: 18px;
    }
    .heart-icon {
        font-size: 4rem;
    }
    .declaration-text {
        font-size: 1.3rem;
    }
    /* Heart Card */
    .heart-card {
        padding: 60px 28px;
    }
    .tap-instruction {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    .heart-image {
        width: 200px;
        height: 200px;
    }
    .heart-glow {
        width: 240px;
        height: 240px;
    }
    .ring-1 { width: 250px; height: 250px; }
    .ring-2 { width: 300px; height: 300px; }
    .ring-3 { width: 350px; height: 350px; }
    .heart-subtext {
        font-size: 1.05rem;
        margin-top: 28px;
    }
    /* Footer */
    .footer {
        padding: 35px 18px;
    }
    .footer p {
        font-size: 1.05rem;
    }
    /* Modal */
    .modal-content {
        padding: 25px;
    }
    .modal-content video {
        max-height: 50vh;
    }
    .btn-close {
        width: 50px;
        height: 50px;
        font-size: 2rem;
        top: -12px;
        right: -12px;
    }
    .modal-text {
        font-size: 2rem;
        margin-top: 25px;
    }
    .modal-hearts {
        font-size: 1.8rem;
    }
}
/* Small Mobile Phones */
@media (max-width: 480px) {
    .start-emoji {
        font-size: 65px;
    }
    .start-title {
        font-size: 2.2rem;
    }
    .btn-start {
        padding: 15px 40px;
        font-size: 1.15rem;
    }
    .character-face {
        font-size: 85px;
    }
    .love-question {
        font-size: 2.2rem;
    }
    .buttons-wrapper {
        flex-direction: column;
        gap: 18px;
    }
    .btn-yes,
    .btn-no {
        width: 100%;
        max-width: 260px;
    }
        .hero-title {
        font-size: 2.6rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .card-title {
        font-size: 1.9rem;
    }
    .card-text {
        font-size: 1rem;
    }
    .message-card {
        padding: 32px 22px;
    }
    .year-num {
        width: 58px;
        height: 68px;
        font-size: 2.8rem;
        border-radius: 12px;
    }
    .newyear-title {
        font-size: 2.3rem;
    }
    .love-declaration {
        font-size: 2.2rem;
    }
    .heart-icon {
        font-size: 3rem;
    }
    .heart-image {
        width: 170px;
        height: 170px;
    }
    .heart-glow {
        width: 200px;
        height: 200px;
    }
    .ring-1 { width: 210px; height: 210px; }
    .ring-2 { width: 250px; height: 250px; }
    .ring-3 { width: 290px; height: 290px; }
    .modal-text {
        font-size: 1.6rem;
    }
    .tap-instruction {
        font-size: 1.5rem;
    }
}
/* ============================================
   🎨 EXTRA SMOOTH EFFECTS
   ============================================ */
/* Selection Color */
::selection {
    background: rgba(255, 107, 157, 0.5);
    color: #fff;
}
::-moz-selection {
    background: rgba(255, 107, 157, 0.5);
    color: #fff;
}
/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #1a0a2e;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff6b9d, #c44569);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #c44569, #ff6b9d);
}
/* Focus states for accessibility */
button:focus,
a:focus {
    outline: 2px solid #ff6b9d;
    outline-offset: 4px;
}
/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* Print Styles */
@media print {
    .bg-elements,
    .floating-hearts,
    .floating-elements,
    #startScreen,
    #loveScreen,
    #gifModal {
        display: none !important;
    }
    body {
        background: white;
        color: black;
    }
    .message-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
/* ============================================
   💖 END OF STYLESHEET
   ============================================ */

