:root {
    --primary: #0a0f18;
    --secondary: #162438;
    --accent: #64ffda;
    --text-main: #ffffff;
    --text-muted: #a0aec0;
    --heart-blue: #3b82f6;
    --heart-white: #ffffff;
    --fire-glow: #ff7e5f;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    --font-heading: 'Cinzel', 'Times New Roman', Times, serif;
    --font-script: 'Dancing Script', 'Brush Script MT', cursive;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

body {
    background-color: var(--primary);
    background-image: radial-gradient(circle at center, #162438 0%, #0a0f18 100%);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
    
    /* Protecciones de Tipografía (Evita que el navegador la distorsione) */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

#heart-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.beautiful-heart {
    position: absolute;
    bottom: -10vh;
    transform: translateY(0);
    animation: floatUp linear infinite;
    opacity: 0.8;
    filter: drop-shadow(0 0 8px currentColor);
}

@keyframes floatUp {
    0% { transform: translateY(0) scale(0.5) rotate(-15deg); opacity: 0; }
    10% { opacity: 0.9; }
    50% { transform: translateY(-50vh) scale(1) rotate(15deg); }
    90% { opacity: 0.8; }
    100% { transform: translateY(-110vh) scale(0.8) rotate(-15deg); opacity: 0; }
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-top: 1px solid rgba(255,255,255,0.2);
    border-left: 1px solid rgba(255,255,255,0.2);
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
    padding: 2.5rem;
    position: relative;
    z-index: 1;
}

.music-controls {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.glass-btn {
    background: rgba(59, 130, 246, 0.25);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(59, 130, 246, 0.6);
    color: white;
    padding: 12px 24px;
    border-radius: 40px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
}

.glass-btn:hover {
    background: rgba(59, 130, 246, 0.5);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.5);
}

.pulse-glow {
    animation: pulseGlowBtn 2s infinite;
}

@keyframes pulseGlowBtn {
    0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(59, 130, 246, 0); }
    100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
    transform: translateZ(0);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 15, 24, 0.4) 0%, rgba(10, 15, 24, 0.9) 100%);
    z-index: 1;
}

#fireworksCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Below the text, above the background/overlay */
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.pre-title {
    font-family: var(--font-script);
    font-size: 2.2rem;
    color: #ffd700;
    margin-bottom: -15px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpFade 1s 0.8s forwards;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    line-height: 1.2;
    padding: 0 10px;
}

.title {
    font-family: var(--font-heading);
    font-size: 6rem;
    color: #ffffff;
    letter-spacing: 5px;
    margin: 0;
    opacity: 0;
    transform: scale(0.9);
    animation: scaleFadeIn 1.5s 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.4), 0 5px 15px rgba(0,0,0,0.8);
    word-wrap: break-word;
    max-width: 100%;
}

.subtitle {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted);
    opacity: 0;
    animation: fadeIn 1s 2s forwards;
    margin-bottom: 2rem;
}

.bottom-phrase {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-main);
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpFade 1s 2.5s forwards;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    font-weight: 300;
}

.main-anniversary-title {
    font-family: var(--font-script);
    font-size: 7.5rem;
    color: #ffeb3b;
    opacity: 0;
    transform: scale(0.9);
    animation: scaleFadeIn 1.5s 0.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    text-shadow: 0 0 30px rgba(255, 235, 59, 0.6), 0 5px 20px rgba(0,0,0,0.9);
    line-height: 1;
    margin-bottom: 5px;
    z-index: 3;
    position: relative;
}

@keyframes slideUpFade { to { opacity: 1; transform: translateY(0); } }
@keyframes scaleFadeIn { to { opacity: 1; transform: scale(1); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.bible-verse-section {
    padding: 8rem 20px 4rem;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.verse-card {
    max-width: 800px;
    text-align: center;
    border-top: 2px solid rgba(255, 126, 95, 0.3);
    background: linear-gradient(180deg, rgba(255,126,95,0.08) 0%, rgba(255,255,255,0.02) 100%);
    transition: transform 0.4s ease;
}

.verse-card:hover {
    transform: translateY(-5px);
}

/* Llama Animada Mejorada */
.fire-wrapper {
    width: 100px;
    height: 120px;
    margin: 0 auto 2rem;
    position: relative;
    filter: drop-shadow(0 0 20px rgba(255, 87, 34, 0.6));
}

.fire {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 80px;
}

.flames {
    position: relative;
    width: 100%;
    height: 100%;
    filter: blur(2px) contrast(1.5);
}

.flames .flame {
    position: absolute;
    bottom: 0;
    left: 15px;
    background: radial-gradient(circle at center, #ff9800 0%, #ff5722 70%);
    border-radius: 50% 0 50% 50%;
    transform: rotate(-45deg);
    mix-blend-mode: screen;
}

.flames .flame:nth-child(1) {
    width: 45px;
    height: 45px;
    left: 7.5px;
    background: #ff5722;
    animation: burn1 1.2s infinite alternate ease-in-out;
}

.flames .flame:nth-child(2) {
    width: 35px;
    height: 35px;
    left: 12.5px;
    background: #ff9800;
    animation: burn2 1s infinite alternate-reverse ease-in-out;
}

.flames .flame:nth-child(3) {
    width: 25px;
    height: 25px;
    left: 17.5px;
    bottom: 10px;
    background: #ffeb3b;
    animation: burn3 0.8s infinite alternate ease-in-out;
}

.flames .flame:nth-child(4) {
    width: 15px;
    height: 15px;
    left: 22.5px;
    bottom: 20px;
    background: #ffffff;
    animation: burn4 0.6s infinite alternate-reverse ease-in-out;
}

@keyframes burn1 {
    0% { transform: rotate(-45deg) scale(0.9) translateY(0); }
    100% { transform: rotate(-45deg) scale(1.1) translateY(-10px); }
}
@keyframes burn2 {
    0% { transform: rotate(-45deg) scale(0.9) skewX(5deg) translateY(0); }
    100% { transform: rotate(-45deg) scale(1.1) skewX(-5deg) translateY(-15px); }
}
@keyframes burn3 {
    0% { transform: rotate(-45deg) scale(0.9) skewX(-5deg) translateY(0); }
    100% { transform: rotate(-45deg) scale(1.15) skewX(5deg) translateY(-20px); }
}
@keyframes burn4 {
    0% { transform: rotate(-45deg) scale(0.9) translateY(0); }
    100% { transform: rotate(-45deg) scale(1.2) translateY(-25px); opacity: 0; }
}

.verse-text {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.verse-ref {
    font-family: var(--font-script);
    font-size: 1.8rem;
    color: var(--text-muted);
}

.transition-text {
    font-family: var(--font-body);
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-main);
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.fire-theme {
    border-top-color: rgba(255, 126, 95, 0.3);
    text-shadow: 0 0 10px rgba(255, 126, 95, 0.2);
}

.countdown-section {
    padding: 4rem 20px;
    display: flex;
    justify-content: center;
}

.heart-counter-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.big-heart-container {
    position: relative;
    width: 280px;
    height: 280px;
    animation: heartbeat 1.5s infinite;
}

.big-heart {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, #ff6b6b, #c0392b);
    clip-path: path('M140,260 C140,260 10,160 10,85 C10,40 45,10 85,10 C115,10 140,40 140,40 C140,40 165,10 195,10 C235,10 270,40 270,85 C270,160 140,260 140,260 Z');
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 50px rgba(255, 65, 108, 0.8), inset 0 0 20px rgba(0,0,0,0.5);
}

.heart-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    z-index: 2;
    transform: translateY(-15px);
}

.years-number {
    font-size: 7rem;
    font-weight: 700;
    line-height: 1;
    font-family: var(--font-heading);
    text-shadow: 3px 3px 10px rgba(0,0,0,0.5);
}

.years-text {
    font-size: 1.5rem;
    font-family: var(--font-script);
    letter-spacing: 2px;
}

@keyframes heartbeat {
    0% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(255, 65, 108, 0.4)); }
    15% { transform: scale(1.08); filter: drop-shadow(0 0 40px rgba(255, 65, 108, 0.8)); }
    30% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(255, 65, 108, 0.4)); }
    45% { transform: scale(1.08); filter: drop-shadow(0 0 40px rgba(255, 65, 108, 0.8)); }
    100% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(255, 65, 108, 0.4)); }
}

.timer {
    display: flex;
    gap: 2rem;
    padding: 2rem 4rem;
    border-radius: 60px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.1);
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-block span {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    background: linear-gradient(180deg, #ffffff 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 10px rgba(59, 130, 246, 0.3));
    font-variant-numeric: tabular-nums;
    line-height: 1.2;
}

.time-block label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-top: 5px;
}

.separator {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255,255,255,0.3);
    animation: blink 1s infinite;
    line-height: 1.2;
}

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

.transition-container {
    max-width: 700px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    box-shadow: var(--glass-shadow);
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}

.transition-text.heart-theme {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
    text-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

.message-section {
    padding: 6rem 20px;
    display: flex;
    justify-content: center;
}

.message-card {
    max-width: 850px;
    text-align: center;
    padding: 4rem;
}

.message-card h2 {
    font-family: var(--font-script);
    font-size: 4rem;
    color: #ffd700;
    margin-bottom: 2rem;
    text-align: center;
}

.message-body p {
    margin-bottom: 1.8rem;
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-main);
    letter-spacing: 0.5px;
}

.signature {
    text-align: center;
    margin-top: 4rem;
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--text-muted);
}

.signature span {
    font-family: var(--font-script);
    font-size: 3.5rem;
    color: var(--heart-white);
    display: block;
    margin-top: -10px;
}

/* --- SCROLLYTELLING GALLERY --- */
.gallery-scrollytelling {
    position: relative;
    width: 100%;
}

.gallery-title-wrapper {
    padding: 6rem 20px;
    background: #050505;
    text-align: center;
    position: relative;
    z-index: 10;
}

.gallery-title {
    font-family: var(--font-script);
    font-size: 4rem;
    color: var(--heart-white);
    margin: 0;
    text-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.gallery-scroll-item {
    position: relative;
    height: 150vh; /* 100vh for sticky, 50vh for scroll */
    border-bottom: 2px solid #000;
}

.sticky-image {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect on desktop */
    z-index: 1;
}

.sticky-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.95) 100%);
}

.scroll-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 25vh;
    z-index: 2;
    pointer-events: none;
}

.scroll-caption {
    background: rgba(10, 15, 24, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
    border-top: 1px solid rgba(255,255,255,0.4);
    padding: 2.5rem 4rem;
    border-radius: 20px;
    max-width: 90%;
    width: 800px;
    text-align: center;
    pointer-events: auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-caption.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-caption p {
    font-family: var(--font-script);
    font-size: 2.5rem;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.9);
    line-height: 1.3;
}

/* Optimización para Pantallas Grandes (PC) */
@media (min-width: 769px) {
    .sticky-image {
        background-size: contain;
        background-repeat: no-repeat;
    }
    
    .scroll-caption {
        padding: 3rem 5rem;
    }
}

/* --- ASOMBROSO CLOSING SECTION --- */
.closing-section {
    position: relative;
    padding: 10rem 20px 12rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    overflow: hidden;
}

.closing-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.closing-card {
    position: relative;
    max-width: 900px;
    padding: 6rem 5rem;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.4);
    background: rgba(10, 8, 0, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.15), inset 0 0 30px rgba(255, 215, 0, 0.05);
    border-radius: 30px;
    z-index: 2;
    transform: translateY(50px);
    opacity: 0;
    transition: opacity 1.2s ease-out, transform 1.2s ease-out, box-shadow 2s ease-in-out;
}

.closing-card.visible {
    opacity: 1;
    transform: translateY(0);
    animation: breatheGlow 4s infinite alternate ease-in-out;
}

@keyframes breatheGlow {
    0% { box-shadow: 0 0 50px rgba(255, 215, 0, 0.15), inset 0 0 30px rgba(255, 215, 0, 0.05); }
    100% { box-shadow: 0 0 90px rgba(255, 215, 0, 0.35), inset 0 0 50px rgba(255, 215, 0, 0.15); }
}

.closing-card::before {
    content: '“';
    position: absolute;
    top: -50px;
    left: 40px;
    font-family: var(--font-heading);
    font-size: 15rem;
    color: rgba(255, 215, 0, 0.08);
    line-height: 1;
    z-index: -1;
    pointer-events: none;
}

.closing-card .verse-text {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    line-height: 1.4;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 1rem;
    background: -webkit-linear-gradient(45deg, #ffffff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.closing-card .verse-ref {
    font-family: var(--font-body);
    font-size: 1.4rem;
    color: #ffd700;
    text-align: right;
    letter-spacing: 2px;
    margin-top: 1.5rem;
}

.final-phrase {
    position: relative;
    margin-top: 5rem;
    padding-top: 4rem;
}

.final-phrase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25%;
    width: 50%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,215,0,0.5), transparent);
}

.final-phrase p {
    font-family: var(--font-body);
    font-size: 1.5rem;
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.final-phrase p:last-child {
    font-family: var(--font-script);
    font-size: 4.5rem;
    color: #ffeb3b;
    margin-top: 2rem;
    margin-bottom: 0;
    text-shadow: 0 0 30px rgba(255, 235, 59, 0.6);
    animation: textFloat 3s infinite alternate ease-in-out;
}

@keyframes textFloat {
    0% { transform: translateY(0); text-shadow: 0 0 20px rgba(255, 235, 59, 0.4); }
    100% { transform: translateY(-8px); text-shadow: 0 0 45px rgba(255, 235, 59, 0.9); }
}

.gold-particle {
    position: absolute;
    background: radial-gradient(circle, #fff 10%, #ffd700 40%, transparent 80%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% { transform: translateY(100px) scale(0); opacity: 0; }
    20% { opacity: 0.8; }
    80% { opacity: 0.8; }
    100% { transform: translateY(-300px) scale(1.5); opacity: 0; }
}

/* Optimización para Dispositivos Móviles */
@media (max-width: 768px) {
    .title { font-size: 2.8rem; }
    .pre-title { font-size: 1.6rem; margin-bottom: 0; }
    .subtitle { font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 1.5rem; }
    .bottom-phrase { font-size: 1rem; }
    .main-anniversary-title { font-size: 4.5rem; line-height: 1.1; margin-bottom: 10px; margin-top: 5px; }
    
    .verse-text { font-size: 1.5rem; }
    .verse-ref { font-size: 1.4rem; }
    .verse-card { padding: 1.5rem; }
    
    .transition-text { font-size: 1.1rem; }
    .transition-container { padding: 2rem 1.5rem; }
    
    .countdown-section { padding: 2rem 10px; }
    .heart-counter-wrapper { gap: 2rem; }
    
    .big-heart-container { 
        transform: scale(0.65); 
        margin-top: -30px; 
        margin-bottom: -30px; 
    }
    
    .timer { 
        flex-wrap: wrap; 
        justify-content: center; 
        padding: 1.5rem; 
        border-radius: 20px; 
        gap: 1rem;
    }
    .separator { display: none; }
    .time-block span { font-size: 2.2rem; }
    .time-block label { font-size: 0.7rem; }
    
    .message-card { padding: 2rem 1.5rem; }
    .message-card h2 { font-size: 2.5rem; }
    .message-body p { font-size: 1.05rem; }
    .signature span { font-size: 2.5rem; }
    
    .gallery-title-wrapper { padding: 4rem 20px; }
    .gallery-title { font-size: 2.8rem; }
    
    .sticky-image { background-attachment: scroll; /* Disable fixed attachment on mobile */ }
    
    .gallery-scroll-item { height: 130vh; }
    .scroll-content { padding-bottom: 20vh; }
    
    .scroll-caption {
        padding: 2rem;
        max-width: 95%;
    }
    .closing-section { padding: 4rem 15px 6rem; }
    .closing-card { padding: 3rem 1.5rem; }
    .closing-card .verse-text { font-size: 1.6rem; }
    .final-phrase p { font-size: 1.1rem; }
    .final-phrase p:last-child { font-size: 2.5rem; }
    
    .music-controls { bottom: 15px; right: 15px; }
    .glass-btn { padding: 10px 15px; font-size: 0.8rem; }
}

@media (max-width: 480px) {
    .title { font-size: 2.2rem; letter-spacing: 2px;}
    .pre-title { font-size: 1.3rem; }
    .main-anniversary-title { font-size: 3.5rem; }
    .big-heart-container { transform: scale(0.55); margin-top: -50px; margin-bottom: -50px; }
    .time-block span { font-size: 1.8rem; }
}
