/* ==========================================
   CSS DESIGN SYSTEM & STYLING FOR AYISHA
   Aesthetic: Midnight Sky, Aurora Borealis,
   Glassmorphism, Gold Glow, Cinematic Film Grain
   ========================================== */

/* --- Variables --- */
:root {
    --bg-dark: #020108;
    --navy-deep: #050414;
    --aurora-g: rgba(16, 185, 129, 0.5); /* Green */
    --aurora-p: rgba(167, 139, 250, 0.5); /* Purple */
    --aurora-b: rgba(59, 130, 246, 0.5); /* Blue */
    --gold: #d4af37;
    --gold-glow: 0 0 15px rgba(212, 175, 55, 0.6);
    --gold-light: #fdf4bd;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    --glass-blur: blur(12px);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --font-handwritten: 'Reenie Beanie', cursive;
}

/* --- Base & Scroll Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    background-color: var(--bg-dark);
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-dark);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- Film Grain Overlay --- */
.film-grain {
    position: fixed;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    width: 200%;
    height: 200%;
    background: transparent url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noise"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noise)" opacity="0.04"/%3E%3C/svg%3E');
    opacity: 0.75;
    pointer-events: none;
    z-index: 9999;
    animation: grain 8s steps(10) infinite;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -10%); }
    20% { transform: translate(-15%, 5%); }
    30% { transform: translate(7%, -25%); }
    40% { transform: translate(-5%, 25%); }
    50% { transform: translate(-15%, 10%); }
    60% { transform: translate(15%, 0%); }
    70% { transform: translate(0%, 15%); }
    85% { transform: translate(3%, 35%); }
    90% { transform: translate(-10%, 10%); }
}

/* --- Canvas Starfield --- */
#starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    pointer-events: none;
    background: linear-gradient(to bottom, #02010b, #060418);
}

/* --- Aurora Borealis --- */
.aurora-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.aurora {
    position: absolute;
    width: 160%;
    height: 160%;
    top: -30%;
    left: -30%;
    filter: blur(100px);
    mix-blend-mode: screen;
    opacity: 0.45;
}

.aurora-green {
    background: radial-gradient(ellipse at 25% 20%, var(--aurora-g) 0%, rgba(16, 185, 129, 0) 65%);
    animation: auroraFlowGreen 30s ease-in-out infinite alternate;
}

.aurora-purple {
    background: radial-gradient(ellipse at 75% 35%, var(--aurora-p) 0%, rgba(167, 139, 250, 0) 65%);
    animation: auroraFlowPurple 35s ease-in-out infinite alternate;
}

.aurora-blue {
    background: radial-gradient(ellipse at 45% 65%, var(--aurora-b) 0%, rgba(59, 130, 246, 0) 70%);
    animation: auroraFlowBlue 28s ease-in-out infinite alternate;
}

@keyframes auroraFlowGreen {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 0.35; }
    50% { transform: translate(5%, 8%) scale(1.05) rotate(10deg); opacity: 0.5; }
    100% { transform: translate(-3%, -5%) scale(0.95) rotate(-5deg); opacity: 0.35; }
}

@keyframes auroraFlowPurple {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 0.4; }
    50% { transform: translate(-8%, 5%) scale(1.1) rotate(-12deg); opacity: 0.6; }
    100% { transform: translate(4%, -8%) scale(0.9) rotate(8deg); opacity: 0.4; }
}

@keyframes auroraFlowBlue {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 0.3; }
    50% { transform: translate(6%, -7%) scale(1.08) rotate(8deg); opacity: 0.45; }
    100% { transform: translate(-5%, 6%) scale(0.95) rotate(-8deg); opacity: 0.3; }
}

/* --- Fullscreen Sections --- */
.fullscreen-section {
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    overflow: hidden;
}

/* --- Buttons --- */
.btn {
    position: relative;
    padding: 1.1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(10px);
    letter-spacing: 1px;
}

.btn span {
    position: relative;
    z-index: 2;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-glowing {
    border-color: rgba(147, 197, 253, 0.4);
    box-shadow: 0 0 15px rgba(147, 197, 253, 0.2), inset 0 0 10px rgba(147, 197, 253, 0.1);
}

.btn-glowing:hover {
    border-color: rgba(147, 197, 253, 0.8);
    box-shadow: 0 0 25px rgba(147, 197, 253, 0.4), inset 0 0 15px rgba(147, 197, 253, 0.2);
    transform: translateY(-2px);
}

.btn-gold {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

.btn-gold:hover {
    border-color: rgba(212, 175, 55, 0.8);
    box-shadow: var(--gold-glow);
    transform: translateY(-2px);
}

/* ==========================================
   SECTION 1 — INTRO
   ========================================== */
#intro-section {
    justify-content: center;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 5;
    animation: fadeInScale 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.animate-glow {
    background: linear-gradient(135deg, #ffffff 40%, var(--gold-light) 70%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGlow 4s ease-in-out infinite alternate;
}

@keyframes textGlow {
    0% { filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.2)); }
    100% { filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.5)); }
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-bottom: 3.5rem;
    opacity: 0.85;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.6;
    animation: bounce 2s infinite;
    z-index: 5;
}

.scroll-indicator p {
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 0.5rem;
    color: var(--text-muted);
}

.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--text-muted);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, 15px); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

@keyframes fadeInScale {
    0% { opacity: 0; transform: scale(0.96) translateY(20px); filter: blur(5px); }
    100% { opacity: 1; transform: scale(1) translateY(0); filter: blur(0); }
}


/* ==========================================
   SECTION 2 — MEMORY SCRAPBOOK
   ========================================== */
#scrapbook-section {
    padding-bottom: 6rem;
    justify-content: flex-start;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--text-main);
    letter-spacing: 1px;
    text-align: center;
    z-index: 5;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 3.5rem;
    text-align: center;
    letter-spacing: 1px;
    z-index: 5;
}

/* --- Neat Scrapbook Layout --- */
.scrapbook-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2rem;
    padding: 2rem;
}

/* --- Polaroid Card Wrapper --- */
.polaroid-wrapper {
    position: relative;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 2;
    width: 100%;
}

.polaroid-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    padding: 14px 14px 20px 14px;
    box-shadow: var(--glass-shadow);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: transform 0.3s ease;
}

.polaroid-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.polaroid-pin {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.4rem;
    text-shadow: 0 3px 6px rgba(0,0,0,0.5);
    z-index: 10;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.polaroid-img-container {
    width: 100%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border-radius: 4px;
    position: relative;
    background: rgba(0, 0, 0, 0.2);
}

.polaroid-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9) contrast(1.05) brightness(0.95);
    transition: all 0.6s ease;
}

.polaroid-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, transparent 30%, rgba(0, 0, 0, 0.25) 100%);
    pointer-events: none;
}

.polaroid-caption {
    font-family: var(--font-handwritten);
    font-size: 1.9rem;
    color: var(--gold-light);
    margin-top: 15px;
    text-align: center;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/* Hover effects */
.polaroid-wrapper:hover {
    transform: scale(1.05) translateY(-8px) !important;
    z-index: 20;
}

.polaroid-wrapper:hover .polaroid-card {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), var(--gold-glow);
    border-color: rgba(212, 175, 55, 0.4);
}

.polaroid-wrapper:hover .polaroid-img-container img {
    filter: saturate(1.1) contrast(1) brightness(1.05);
    transform: scale(1.03);
}

.polaroid-wrapper:hover .polaroid-pin {
    transform: translateX(-50%) translateY(-2px) scale(1.1);
}

/* Absolute coordinates for messy polaroid scatter - RESET FOR GRID */
.polaroid-wrapper.p1 { transform: rotate(-1deg); }
.polaroid-wrapper.p2 { transform: rotate(1deg); }
.polaroid-wrapper.p3 { transform: rotate(-0.5deg); }
.polaroid-wrapper.p4 { transform: rotate(0.5deg); }
.polaroid-wrapper.p5 { transform: rotate(-1deg); }
.polaroid-wrapper.p6 { transform: rotate(1deg); }

/* --- Decorative Stickers --- */
.sticker {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0.7;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.4));
}

.clickable-egg {
    pointer-events: auto !important;
    cursor: pointer !important;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.clickable-egg:hover {
    transform: scale(1.15) !important;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.8));
}

.svg-sticker {
    width: 100%;
    height: 100%;
}

.moon-sticker {
    width: 90px;
    height: 90px;
    animation: float 8s ease-in-out infinite alternate;
}

.butterfly-sticker {
    width: 60px;
    height: 60px;
}

.butterfly-sticker.b1 {
    animation: float 6s ease-in-out infinite alternate, flap 0.8s ease-in-out infinite alternate;
}

.butterfly-sticker.b2 {
    animation: float 7s ease-in-out infinite alternate-reverse, flap 0.6s ease-in-out infinite alternate;
}

.flower-sticker {
    width: 80px;
    height: 80px;
}

.flower-sticker.f1 {
    animation: float 9s ease-in-out infinite alternate;
}

.flower-sticker.f2 {
    animation: float 8s ease-in-out infinite alternate-reverse;
}

.sparkle {
    font-size: 1.5rem;
    color: var(--gold-light);
    text-shadow: 0 0 10px var(--gold);
}

.sparkle.s1 { animation: twinkle 3s infinite ease-in-out; }
.sparkle.s2 { animation: twinkle 4s infinite ease-in-out 1.2s; }
.sparkle.s3 { animation: twinkle 3.5s infinite ease-in-out 2s; }

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-15px) rotate(8deg); }
}

@keyframes flap {
    0% { transform: scaleX(1); }
    100% { transform: scaleX(0.75); }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.25); }
}

/* --- Scrapbook Footer --- */
.scrapbook-footer {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 4rem;
    z-index: 5;
}


/* ==========================================
   SECTION 3 — SECRET NOTES
   ========================================== */
#secret-notes-section {
    padding-bottom: 8rem;
    justify-content: flex-start;
}

.notes-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3.5rem;
    width: 100%;
    max-width: 1000px;
    margin: 3rem auto 0 auto;
    z-index: 5;
}

.note-envelope-wrapper {
    position: relative;
    width: 220px;
    height: 180px;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.note-envelope-card {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    position: relative;
    z-index: 2;
    overflow: hidden;
    transition: all 0.4s ease;
}

.note-envelope-glow {
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle, rgba(147, 197, 253, 0.15) 0%, transparent 60%);
    opacity: 0.5;
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
    transform: scale(0.8);
}

.note-envelope-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
}

.note-envelope-emoji {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    transition: transform 0.4s ease;
}

.note-envelope-label {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-main);
    letter-spacing: 0.5px;
    transition: color 0.4s ease;
}

.env-sad { animation: envFloat1 7s ease-in-out infinite alternate; }
.env-overthinking { animation: envFloat2 8s ease-in-out infinite alternate 0.5s; }
.env-happy { animation: envFloat3 7.5s ease-in-out infinite alternate 1s; }
.env-missme { animation: envFloat4 8.5s ease-in-out infinite alternate 0.3s; }
.env-hard { animation: envFloat5 9s ease-in-out infinite alternate 0.8s; }

@keyframes envFloat1 {
    0% { transform: translateY(0px) rotate(-1deg); }
    100% { transform: translateY(-12px) rotate(2deg); }
}
@keyframes envFloat2 {
    0% { transform: translateY(0px) rotate(2deg); }
    100% { transform: translateY(-15px) rotate(-2deg); }
}
@keyframes envFloat3 {
    0% { transform: translateY(0px) rotate(-2deg); }
    100% { transform: translateY(-10px) rotate(1deg); }
}
@keyframes envFloat4 {
    0% { transform: translateY(0px) rotate(1deg); }
    100% { transform: translateY(-14px) rotate(-1deg); }
}
@keyframes envFloat5 {
    0% { transform: translateY(0px) rotate(-2deg); }
    100% { transform: translateY(-16px) rotate(2deg); }
}

.note-envelope-wrapper:hover {
    transform: scale(1.08) translateY(-5px) !important;
    z-index: 10;
}

.note-envelope-wrapper:hover .note-envelope-card {
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), var(--gold-glow);
}

.note-envelope-wrapper:hover .note-envelope-glow {
    opacity: 0.9;
    transform: scale(1.1);
}

.note-envelope-wrapper:hover .note-envelope-emoji {
    transform: scale(1.15) translateY(-3px);
}

.note-envelope-wrapper:hover .note-envelope-label {
    color: var(--gold-light);
}


/* ==========================================
   SECTION 4 — LETTER (MAGICAL JOURNAL)
   ========================================== */
#journal-section {
    padding-bottom: 7rem;
    justify-content: flex-start;
}

.journal-bg-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.glowing-moon {
    position: absolute;
    top: 5%;
    right: 5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(253, 244, 189, 0.25) 0%, rgba(253, 244, 189, 0.03) 60%, transparent 100%);
    filter: blur(20px);
    border-radius: 50%;
    animation: moonPulse 8s ease-in-out infinite alternate;
}

@keyframes moonPulse {
    0% { opacity: 0.6; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1.05); }
}

.candle-container {
    position: absolute;
    bottom: 50px;
    width: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.candle-container.c1 { left: 8%; }
.candle-container.c2 { right: 8%; bottom: 80px; }

.candle-body {
    width: 100%;
    height: 80px;
    background: linear-gradient(to right, #cfcbb7, #eae7db 50%, #9e9a86 100%);
    border-radius: 4px 4px 0 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.candle-container.c2 .candle-body { height: 110px; }

.candle-flame {
    width: 8px;
    height: 18px;
    background: radial-gradient(ellipse at 50% 100%, #ffffff 0%, #fef08a 25%, #f97316 70%, transparent 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    margin-bottom: 2px;
    transform-origin: center bottom;
    animation: flameFlicker 3s ease-in-out infinite;
}

.candle-glow {
    position: absolute;
    top: -40px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.25) 0%, rgba(251, 191, 36, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes flameFlicker {
    0%, 100% { transform: scale(1) rotate(-1deg); }
    30% { transform: scale(1.05) rotate(1deg) skewX(1deg); }
    50% { transform: scale(0.95) rotate(-2deg); }
    80% { transform: scale(1.02) rotate(2deg) skewX(-1deg); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.8; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1.05); }
}

.journal-container {
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.journal-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    color: var(--gold-light);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    margin-bottom: 3rem;
    letter-spacing: 0.5px;
    text-align: center;
}

.journal-card {
    background: linear-gradient(to bottom, #fbfaf5 0%, #f4f2e6 100%);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), inset 0 0 40px rgba(0,0,0,0.02);
    padding: 4rem 3.5rem;
    width: 100%;
    position: relative;
    overflow: hidden;
    color: #2c2a29;
}

.journal-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.035) 1px, transparent 1px);
    background-size: 100% 28px;
    pointer-events: none;
    opacity: 0.7;
    z-index: 1;
}

.journal-content {
    position: relative;
    z-index: 2;
}

.journal-salutation {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 600;
    font-style: italic;
    color: #3f3c3a;
    margin-bottom: 2rem;
}

.journal-body-text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.85;
    color: #3a3836;
    font-weight: 400;
}

.journal-body-text p {
    margin-bottom: 1.5rem;
    text-indent: 1.5rem;
}

.journal-valediction {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: #62605e;
    margin-top: 3rem;
}

.journal-signature-container {
    display: inline-block;
    margin-top: 5px;
}

.journal-signature-text {
    font-family: var(--font-handwritten);
    font-size: 3.5rem;
    color: #8c3202; /* Warm brown ink color */
    display: inline-block;
    transform: rotate(-3deg);
    line-height: 1;
}

.journal-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 4rem;
    text-align: center;
    width: 100%;
}

.exist-quote {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--gold-light);
    text-shadow: 0 0 10px rgba(253, 244, 189, 0.3);
    margin-bottom: 2.5rem;
    letter-spacing: 0.5px;
}


/* ==========================================
   SECTION 5 — BIRTHDAY FINALE
   ========================================== */
#finale-section {
    padding-bottom: 6rem;
    justify-content: center;
}

.finale-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 800px;
    z-index: 5;
}

.finale-polaroid {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    padding: 18px 18px 24px 18px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
    border-radius: 12px;
    max-width: 350px;
    width: 100%;
    transform: rotate(-2deg);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 3.5rem;
    position: relative;
}

.finale-polaroid:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.85), var(--gold-glow);
    border-color: rgba(212, 175, 55, 0.4);
}

.finale-img-container {
    width: 100%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.3);
}

.finale-img-container img, .finale-video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.finale-content {
    margin-bottom: 4rem;
}

.finale-title {
    font-family: var(--font-heading);
    font-size: 3.6rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    text-shadow: 0 0 20px rgba(253, 244, 189, 0.4);
}

.finale-reveal-text {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 2.5s ease, transform 2.5s ease;
}

.finale-reveal-text.reveal {
    opacity: 1;
    transform: translateY(0);
}


/* ==========================================
   LIGHTBOX (PHOTO POPUP)
   ========================================== */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(2, 1, 8, 0.75);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 3.5rem;
    cursor: pointer;
    z-index: 1010;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    color: var(--gold);
    opacity: 1;
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    font-size: 2.2rem;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1010;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: var(--gold-glow);
}

.lightbox-prev { left: 2.5rem; }
.lightbox-next { right: 2.5rem; }

.lightbox-content {
    max-width: 90%;
    max-height: 85%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0.9);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox-overlay.active .lightbox-content {
    transform: scale(1);
}

.lightbox-polaroid {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 18px 18px 24px 18px;
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
    max-width: 360px;
    width: 100%;
}

.lightbox-img-container {
    width: 100%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border-radius: 6px;
}

.lightbox-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lightbox-caption {
    font-family: var(--font-handwritten);
    font-size: 2.5rem;
    color: var(--gold-light);
    text-align: center;
    margin-top: 20px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}


/* ==========================================
   HIDDEN LETTERS MODAL
   ========================================== */
.letters-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(2, 1, 8, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 2rem;
}

.letters-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.letters-container {
    width: 100%;
    max-width: 950px;
    position: relative;
    text-align: center;
    z-index: 1005;
}

.letters-close {
    position: absolute;
    top: -3.5rem;
    right: 0;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 3.5rem;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.letters-close:hover {
    color: var(--gold);
    opacity: 1;
    transform: scale(1.1);
}

.letters-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(212,175,55,0.3);
}

.letters-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 4rem;
}

.envelopes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    justify-items: center;
    align-items: center;
}

.envelope-wrapper {
    perspective: 1000px;
    width: 250px;
    height: 160px;
    cursor: pointer;
}

.envelope-card {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.envelope-front, .envelope-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.envelope-front {
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.envelope-flap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    transform-origin: top;
    transition: transform 0.4s ease;
    z-index: 3;
}

.envelope-seal {
    font-size: 1.8rem;
    margin-top: 15px;
    z-index: 4;
    transition: transform 0.4s ease;
}

.envelope-tag {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--text-main);
    letter-spacing: 0.5px;
    margin-top: 10px;
    padding: 3px 12px;
    background: rgba(255,255,255,0.04);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
    z-index: 4;
    transition: background 0.3s ease;
}

.envelope-back {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(2, 1, 8, 0.95) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transform: rotateY(180deg);
}

.envelope-wrapper:hover .envelope-front {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), var(--gold-glow);
}

.envelope-wrapper:hover .envelope-flap {
    transform: rotateX(30deg) translateY(-2px);
}

.envelope-wrapper:hover .envelope-seal {
    transform: scale(1.15) rotate(5deg);
}

.envelope-wrapper:hover .envelope-tag {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-light);
}

.envelope-wrapper.open .envelope-card {
    transform: rotateY(180deg);
}


/* ==========================================
   LETTER DETAIL LIGHTBOX
   ========================================== */
.letter-detail-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(2, 1, 8, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1100;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 1.5rem;
}

.letter-detail-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.letter-paper {
    background: linear-gradient(to bottom, #fbfbf6 0%, #f4f3ea 100%);
    color: #2c2a29;
    width: 100%;
    max-width: 580px;
    height: 80vh;
    border-radius: 12px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9), inset 0 0 40px rgba(0,0,0,0.03);
    padding: 3.5rem 3rem;
    position: relative;
    transform: translateY(40px);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

.letter-detail-overlay.active .letter-paper {
    transform: translateY(0);
}

.letter-paper::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 100% 28px;
    pointer-events: none;
    opacity: 0.7;
}

.letter-detail-close {
    position: absolute;
    top: 1.5rem;
    right: 1.8rem;
    background: none;
    border: none;
    color: #555552;
    font-size: 2.2rem;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease, transform 0.3s ease;
}

.letter-detail-close:hover {
    color: #b45309;
    transform: scale(1.1);
}

.letter-scrollable-content {
    height: 100%;
    overflow-y: auto;
    padding-right: 10px;
    scrollbar-width: thin;
    scrollbar-color: #d1cfc0 transparent;
    position: relative;
    z-index: 2;
}

.letter-scrollable-content::-webkit-scrollbar {
    width: 6px;
}

.letter-scrollable-content::-webkit-scrollbar-track {
    background: transparent;
}

.letter-scrollable-content::-webkit-scrollbar-thumb {
    background-color: #d1cfc0;
    border-radius: 10px;
}

.letter-date {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #7b7875;
    margin-bottom: 2rem;
}

.letter-body {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    line-height: 1.7;
    font-style: italic;
    color: #3d3b39;
    margin-bottom: 3rem;
    white-space: pre-line;
}

.letter-body p { margin-bottom: 1.5rem; }

.letter-sign-off {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.4;
    color: #5d5a57;
}

.handwritten-signature {
    font-family: var(--font-handwritten);
    font-size: 2.8rem;
    color: #92400e;
    display: inline-block;
    margin-top: 5px;
    transform: rotate(-3deg);
}


/* ==========================================
   SECRET NOTE DETAIL POPUP (SECTION 3)
   ========================================== */
.secret-note-detail-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(2, 1, 8, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1100;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 1.5rem;
}

.secret-note-detail-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.secret-note-paper {
    background: linear-gradient(to bottom, #fefefb 0%, #f7f6ec 100%);
    color: #2c2a29;
    width: 100%;
    max-width: 480px;
    border-radius: 16px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9);
    padding: 3.5rem 2.5rem;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
}

.secret-note-detail-overlay.active .secret-note-paper { transform: scale(1); }

.secret-note-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #62605e;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}

.secret-note-close:hover {
    color: #b45309;
    transform: scale(1.1);
}

.secret-note-icon-header {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.secret-note-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #1e1b18;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.secret-note-body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.75;
    color: #4a4744;
    white-space: pre-line;
}


/* ==========================================
   WISH MODAL (ONE LAST THING)
   ========================================== */
.wish-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(2, 1, 8, 0.9);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 1200;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

.wish-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.wish-close {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 3.5rem;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.wish-close:hover {
    color: var(--gold);
    opacity: 1;
    transform: scale(1.1);
}

.wish-container {
    width: 100%;
    max-width: 600px;
    text-align: center;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wish-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(212,175,55,0.3);
}

.wish-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 4rem;
}

.interactive-star-container {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.star-halo {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.3) 0%, transparent 70%);
    filter: blur(5px);
    animation: pulseHalo 2s infinite ease-in-out;
}

@keyframes pulseHalo {
    0%, 100% { transform: scale(0.9); opacity: 0.5; }
    50% { transform: scale(1.15); opacity: 1; }
}

.glowing-star-button {
    font-size: 5rem;
    cursor: pointer;
    z-index: 2;
    filter: drop-shadow(0 0 15px rgba(212,175,55,0.7));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    user-select: none;
    animation: starRotate 10s linear infinite;
}

@keyframes starRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.glowing-star-button:hover {
    transform: scale(1.25) rotate(15deg);
    filter: drop-shadow(0 0 25px rgba(212,175,55,1));
}

.glowing-star-button:active { transform: scale(0.9); }

.wish-reveal {
    margin-top: 1rem;
    animation: fadeInUp 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.wish-desc {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-style: italic;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.birthday-ending {
    font-family: var(--font-body);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(212,175,55,0.5);
    animation: textFlicker 3s infinite alternate;
}

@keyframes textFlicker {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; }
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}


/* ==========================================
   EASTER EGG TOAST NOTIFICATION
   ========================================== */
.toast-alert {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(50px);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), var(--gold-glow);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-alert.active {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.toast-emoji {
    font-size: 1.3rem;
}

.toast-message {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-main);
}


/* Helper Class to Hide Elements */
.hidden {
    display: none !important;
}


/* ==========================================
   RESPONSIVENESS (MOBILE FRIENDLY)
   ========================================== */

/* Tablet (Screens below 1024px) */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
        padding: 0 1rem;
    }
    
    .scrapbook-container {
        height: auto;
        grid-template-columns: repeat(2, 1fr);
        max-width: 760px;
        padding: 0 2rem;
        gap: 2.5rem;
    }

    .sticker.flower-sticker.f1 { left: 2%; }
    .sticker.flower-sticker.f2 { right: 2%; }

    .envelopes-grid { gap: 2rem; }

    .notes-container {
        gap: 2.5rem;
        max-width: 600px;
    }

    .candle-container.c1 { left: 3%; }
    .candle-container.c2 { right: 3%; }
}

/* Mobile (Screens below 768px) */
@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; margin-bottom: 2.5rem; }
    .section-title { font-size: 2.2rem; }
    .section-subtitle { font-size: 0.9rem; margin-bottom: 2.5rem; }
    
    .scrapbook-container {
        height: auto;
        display: grid;
        grid-template-columns: 1fr;
        max-width: 320px;
        gap: 2.5rem;
        padding: 0 1rem;
    }
    
    .polaroid-wrapper {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 100% !important;
    }

    .polaroid-wrapper.p1 { transform: rotate(-0.5deg) !important; }
    .polaroid-wrapper.p2 { transform: rotate(0.5deg) !important; }
    .polaroid-wrapper.p3 { transform: rotate(-0.5deg) !important; }
    .polaroid-wrapper.p4 { transform: rotate(0.5deg) !important; }
    .polaroid-wrapper.p5 { transform: rotate(-0.5deg) !important; }
    .polaroid-wrapper.p6 { transform: rotate(0.5deg) !important; }

    .sticker.moon-sticker { width: 60px; height: 60px; top: -5% !important; left: 5% !important; }
    .sticker.butterfly-sticker.b1 { width: 45px; height: 45px; top: 15% !important; right: 5% !important; }
    .sticker.butterfly-sticker.b2 { display: none; }
    .sticker.flower-sticker.f1 { display: none; }
    .sticker.flower-sticker.f2 { display: none; }

    .envelopes-grid { grid-template-columns: 1fr; gap: 2rem; }
    .envelope-wrapper { width: 260px; height: 160px; }
    .letters-container { padding-top: 3rem; }
    .letters-close { top: -1.5rem; right: 1rem; }
    .letter-paper { padding: 2.5rem 1.8rem; height: 85vh; }
    .letter-body { font-size: 1.15rem; line-height: 1.6; }

    /* Section 3 Mobile */
    .notes-container { flex-direction: column; align-items: center; gap: 2rem; }
    .note-envelope-wrapper {
        width: 260px;
        height: 140px;
        animation: none !important;
    }
    .note-envelope-wrapper.env-sad { transform: rotate(-1deg); }
    .note-envelope-wrapper.env-overthinking { transform: rotate(1.5deg); }
    .note-envelope-wrapper.env-happy { transform: rotate(-1deg); }
    .note-envelope-wrapper.env-missme { transform: rotate(1deg); }
    .note-envelope-wrapper.env-hard { transform: rotate(-1.5deg); }

    /* Section 4 Mobile */
    .journal-bg-decor { display: none; }
    .journal-title { font-size: 2.2rem; }
    .journal-card { padding: 2.5rem 1.5rem; }
    .journal-body-text { font-size: 0.95rem; line-height: 1.7; }
    .journal-body-text p { text-indent: 1rem; }
    .exist-quote { font-size: 1.4rem; margin-bottom: 2rem; }

    /* Section 5 Mobile */
    .finale-title { font-size: 2.2rem; }
    .finale-reveal-text { font-size: 1.15rem; line-height: 1.7; padding: 0 1rem; }
    .finale-polaroid { max-width: 280px; margin-bottom: 2.5rem; }

    .wish-title { font-size: 2rem; }
    .wish-desc { font-size: 1.15rem; }
}
