/* ===== PROPOSAL PAGE - PREMIUM ROMANTIC DESIGN ===== */

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0a0a12;
    --bg-deep: #0f0518;
    --rose: #ff2d75;
    --rose-light: #ff6b9d;
    --rose-glow: rgba(255, 45, 117, 0.4);
    --gold: #ffd700;
    --gold-light: #ffe066;
    --gold-glow: rgba(255, 215, 0, 0.3);
    --pink: #ff69b4;
    --pink-light: #ffb6dd;
    --purple: #8b5cf6;
    --purple-glow: rgba(139, 92, 246, 0.3);
    --white: #ffffff;
    --white-soft: rgba(255, 255, 255, 0.9);
    --text-dim: rgba(255, 255, 255, 0.6);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-dark);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
    cursor: default;
}

/* --- Particles Background --- */
#particles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0;
    }
}

/* --- Floating Hearts --- */
#floating-hearts {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.float-heart {
    position: absolute;
    font-size: 1.5rem;
    animation: floatHeart linear infinite;
    opacity: 0;
}

@keyframes floatHeart {
    0% {
        transform: translateY(110vh) rotate(0deg) scale(0.5);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    50% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-10vh) rotate(360deg) scale(1.2);
        opacity: 0;
    }
}

/* --- Rose Petals --- */
#rose-petals {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.rose-petal {
    position: absolute;
    width: 15px;
    height: 20px;
    background: radial-gradient(ellipse at center, var(--rose-light), var(--rose));
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0;
    animation: petalFall linear infinite;
}

@keyframes petalFall {
    0% {
        transform: translateY(-5vh) rotate(0deg) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 0.7;
    }

    50% {
        transform: translateY(50vh) rotate(180deg) translateX(50px);
        opacity: 0.5;
    }

    100% {
        transform: translateY(110vh) rotate(360deg) translateX(-30px);
        opacity: 0;
    }
}

/* --- Screens --- */
.screen {
    display: none;
    min-height: 100vh;
    position: relative;
    z-index: 2;
}

.screen.active {
    display: flex;
    flex-direction: column;
}

/* ==========================================
   INTRO SCREEN
   ========================================== */
#intro-screen {
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 45, 117, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(255, 215, 0, 0.08) 0%, transparent 40%),
        var(--bg-deep);
}

.intro-content {
    text-align: center;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

/* --- Ring Box --- */
.ring-box {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 3rem;
    perspective: 500px;
    cursor: pointer;
}

.ring-box-lid {
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 35%;
    background: linear-gradient(135deg, #6d1040, #931150, #6d1040);
    border-radius: 8px 8px 0 0;
    transform-origin: bottom center;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 3;
    box-shadow: 0 -5px 20px rgba(255, 45, 117, 0.3);
}

.ring-box-lid::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 30%;
    width: 40%;
    height: 6px;
    background: var(--gold);
    border-radius: 3px;
    box-shadow: 0 0 10px var(--gold-glow);
}

.ring-box-base {
    position: absolute;
    bottom: 0;
    left: 5%;
    width: 90%;
    height: 70%;
    background: linear-gradient(135deg, #8b1450, #a0185a, #8b1450);
    border-radius: 0 0 12px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.5),
        inset 0 2px 10px rgba(255, 255, 255, 0.1);
}

.ring-box-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.ring-box.opened .ring-box-lid {
    transform: rotateX(-120deg);
}

.ring {
    position: relative;
    width: 50px;
    height: 50px;
    border: 4px solid var(--gold);
    border-radius: 50%;
    box-shadow:
        0 0 20px var(--gold-glow),
        0 0 40px var(--gold-glow),
        inset 0 0 10px var(--gold-glow);
    animation: ringGlow 2s ease-in-out infinite;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s 0.4s, transform 0.5s 0.4s;
}

.ring-box.opened .ring {
    opacity: 1;
    transform: translateY(0);
}

.diamond {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.3rem;
    filter: drop-shadow(0 0 10px var(--gold-glow));
    animation: diamondSparkle 1.5s ease-in-out infinite;
}

@keyframes ringGlow {

    0%,
    100% {
        box-shadow: 0 0 20px var(--gold-glow), 0 0 40px var(--gold-glow);
    }

    50% {
        box-shadow: 0 0 30px var(--gold-glow), 0 0 60px var(--gold-glow), 0 0 80px rgba(255, 215, 0, 0.15);
    }
}

@keyframes diamondSparkle {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
        filter: drop-shadow(0 0 10px var(--gold-glow));
    }

    50% {
        transform: translateX(-50%) scale(1.15);
        filter: drop-shadow(0 0 20px var(--gold-glow)) drop-shadow(0 0 30px rgba(255, 255, 255, 0.3));
    }
}

/* --- Intro Text --- */
.intro-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white), var(--pink-light), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.2);
    }
}

.intro-sub {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--rose-light);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* --- Magic Button --- */
.btn-magic {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    background: linear-gradient(135deg, var(--rose), var(--purple));
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow:
        0 5px 30px var(--rose-glow),
        0 0 60px rgba(139, 92, 246, 0.2);
    animation: fadeInUp 1s ease-out 0.5s both, btnPulse 2s ease-in-out infinite 1.5s;
}

.btn-magic::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-magic:hover::before {
    left: 100%;
}

.btn-magic:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow:
        0 10px 40px var(--rose-glow),
        0 0 80px rgba(139, 92, 246, 0.3);
}

.btn-sparkle {
    animation: sparkleRotate 2s linear infinite;
}

@keyframes sparkleRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes btnPulse {

    0%,
    100% {
        box-shadow: 0 5px 30px var(--rose-glow);
    }

    50% {
        box-shadow: 0 5px 50px var(--rose-glow), 0 0 80px rgba(255, 45, 117, 0.3);
    }
}

/* ==========================================
   STORY SECTIONS
   ========================================== */
#story-screen.active {
    display: block;
}

.story-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

#story-1 {
    background:
        radial-gradient(ellipse at 30% 30%, rgba(255, 45, 117, 0.12) 0%, transparent 60%),
        var(--bg-deep);
}

#story-2 {
    background:
        radial-gradient(ellipse at 70% 40%, rgba(139, 92, 246, 0.12) 0%, transparent 60%),
        var(--bg-deep);
}

#story-3 {
    background:
        radial-gradient(ellipse at 40% 60%, rgba(255, 105, 180, 0.12) 0%, transparent 60%),
        var(--bg-deep);
}

#story-4 {
    background:
        radial-gradient(ellipse at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        var(--bg-deep);
}

.story-content {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.story-emoji {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: emojiFloat 3s ease-in-out infinite;
}

@keyframes emojiFloat {

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

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

.story-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white), var(--pink-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-text {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--white-soft);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.story-hearts {
    font-size: 2rem;
    animation: heartBeat 1.5s ease-in-out infinite;
}

@keyframes heartBeat {

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

    25% {
        transform: scale(1.1);
    }

    35% {
        transform: scale(1);
    }

    45% {
        transform: scale(1.15);
    }

    55% {
        transform: scale(1);
    }
}

/* Scroll hint */
.scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-top: 2rem;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

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

    50% {
        transform: translateY(5px);
        opacity: 0.7;
    }
}

.scroll-arrow {
    font-size: 1.5rem;
    animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {

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

    50% {
        transform: translateY(8px);
    }
}

/* ==========================================
   PROPOSAL SECTION
   ========================================== */
.proposal-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(255, 45, 117, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 40%),
        var(--bg-dark);
}

.proposal-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--rose-glow) 0%, transparent 70%);
    animation: proposalGlow 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes proposalGlow {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.8;
    }
}

.proposal-content {
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

/* Ring animation */
.proposal-ring-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
}

.proposal-ring-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    animation: ringPulseGlow 2s ease-in-out infinite;
}

@keyframes ringPulseGlow {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 1;
    }
}

.proposal-ring-emoji {
    position: relative;
    font-size: 5rem;
    animation: ringBounce 2s ease-in-out infinite;
    filter: drop-shadow(0 0 30px var(--gold-glow));
    z-index: 1;
    line-height: 120px;
}

@keyframes ringBounce {

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

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

/* The Question */
.proposal-question {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(2.5rem, 10vw, 5rem);
    font-weight: 400;
    margin-bottom: 1rem;
    overflow: hidden;
}

.proposal-question .word {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--rose-light), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: wordReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: calc(var(--i) * 0.2s + 0.5s);
    margin: 0 0.2em;
}

@keyframes wordReveal {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.8);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.proposal-name {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--rose-light);
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 1.5s both;
}

/* --- Buttons --- */
.proposal-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 2s both;
}

.btn-yes {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1.2rem 3rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, var(--rose), #ff1a5e, var(--rose));
    background-size: 200% 200%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow:
        0 0 30px var(--rose-glow),
        0 0 60px rgba(255, 45, 117, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    animation: yesGlow 2s ease-in-out infinite;
}

@keyframes yesGlow {

    0%,
    100% {
        background-position: 0% 50%;
        box-shadow: 0 0 30px var(--rose-glow), 0 0 60px rgba(255, 45, 117, 0.2);
    }

    50% {
        background-position: 100% 50%;
        box-shadow: 0 0 50px var(--rose-glow), 0 0 100px rgba(255, 45, 117, 0.3);
    }
}

.btn-yes:hover {
    transform: scale(1.1);
    box-shadow:
        0 0 50px var(--rose-glow),
        0 0 100px rgba(255, 45, 117, 0.4);
}

.btn-yes .btn-heart {
    animation: heartBeat 1.2s ease-in-out infinite;
}

.btn-no {
    padding: 0.8rem 2rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-dim);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.btn-no:hover {
    opacity: 0.9;
}

.proposal-promise {
    font-size: 0.95rem;
    color: var(--text-dim);
    font-style: italic;
    max-width: 400px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 2.3s both;
}

/* ==========================================
   CELEBRATION SCREEN
   ========================================== */
#celebration-screen {
    background:
        radial-gradient(ellipse at 50% 30%, rgba(255, 215, 0, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 70%, rgba(255, 45, 117, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        var(--bg-dark);
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
}

#confetti-burst {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.confetti-piece {
    position: absolute;
    width: 10px;
    height: 10px;
    opacity: 0;
    animation: confettiFall linear forwards;
}

@keyframes confettiFall {
    0% {
        transform: translateY(-10vh) translateX(0) rotate(0deg);
        opacity: 1;
    }

    25% {
        transform: translateY(25vh) translateX(30px) rotate(180deg);
        opacity: 1;
    }

    50% {
        transform: translateY(55vh) translateX(-20px) rotate(360deg);
        opacity: 0.8;
    }

    75% {
        transform: translateY(80vh) translateX(15px) rotate(540deg);
        opacity: 0.4;
    }

    100% {
        transform: translateY(110vh) translateX(-10px) rotate(720deg);
        opacity: 0;
    }
}

#fireworks {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9;
}

.firework {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: fireworkExplode 1.5s ease-out forwards;
}

@keyframes fireworkExplode {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1) translate(var(--tx), var(--ty));
        opacity: 0;
    }
}

.celebration-content {
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 5;
    animation: celebrationEntry 1s ease-out;
}

@keyframes celebrationEntry {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    50% {
        transform: scale(1.05);
    }

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

.celebration-ring {
    font-size: 6rem;
    margin-bottom: 1.5rem;
    animation: celebRingSpin 3s ease-in-out infinite;
    filter: drop-shadow(0 0 40px var(--gold-glow));
}

@keyframes celebRingSpin {

    0%,
    100% {
        transform: rotateY(0deg) scale(1);
    }

    25% {
        transform: rotateY(30deg) scale(1.1);
    }

    50% {
        transform: rotateY(0deg) scale(1);
    }

    75% {
        transform: rotateY(-30deg) scale(1.1);
    }
}

.celebration-title {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(3rem, 10vw, 6rem);
    background: linear-gradient(135deg, var(--gold), var(--rose-light), var(--gold-light), var(--pink));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 4s ease-in-out infinite;
    margin-bottom: 1rem;
}

@keyframes gradientMove {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.celebration-hearts {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.celebration-hearts span {
    animation: celebHeart 1.5s ease-in-out infinite;
}

.celebration-hearts span:nth-child(1) {
    animation-delay: 0s;
}

.celebration-hearts span:nth-child(2) {
    animation-delay: 0.2s;
}

.celebration-hearts span:nth-child(3) {
    animation-delay: 0.4s;
}

.celebration-hearts span:nth-child(4) {
    animation-delay: 0.6s;
}

.celebration-hearts span:nth-child(5) {
    animation-delay: 0.8s;
}

@keyframes celebHeart {

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

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

.celebration-text {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--rose-light);
    margin-bottom: 1rem;
}

.celebration-sub {
    font-size: 1.1rem;
    color: var(--white-soft);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.celebration-date {
    display: inline-flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem 3rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
}

.date-label {
    font-size: 0.85rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.date-infinity {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--gold), var(--rose-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.celebration-footer {
    margin-top: 2rem;
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* ==========================================
   UTILITY ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

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

    50% {
        transform: scale(1.05);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
    .ring-box {
        width: 110px;
        height: 110px;
        margin-bottom: 2rem;
    }

    .proposal-ring-container {
        width: 90px;
        height: 90px;
    }

    .proposal-ring-emoji {
        font-size: 3.5rem;
        line-height: 90px;
    }

    .proposal-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-yes {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
    }

    .celebration-hearts {
        font-size: 2rem;
        gap: 0.6rem;
    }
}

@media (max-width: 480px) {

    .intro-content,
    .story-content,
    .proposal-content,
    .celebration-content {
        padding: 1.5rem;
    }

    .celebration-date {
        padding: 1rem 2rem;
    }
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--rose), var(--purple));
    border-radius: 3px;
}

/* --- Selection --- */
::selection {
    background: var(--rose);
    color: var(--white);
}