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

:root {
    --bg-black: #0b0b0f;
    --deep-red: #ff003c;
    --baby-pink: #ff69b4;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-tertiary: rgba(255, 255, 255, 0.5);
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 0, 60, 0.2);
    --spacing-xs: 1rem;
    --spacing-sm: 2rem;
    --spacing-md: 4rem;
    --spacing-lg: 6rem;
    --spacing-xl: 8rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-black);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: var(--spacing-md);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.radial-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--deep-red) 0%, transparent 70%);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--baby-pink) 0%, transparent 70%);
    bottom: 20%;
    right: 15%;
    animation-delay: 7s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--deep-red) 0%, transparent 70%);
    top: 50%;
    right: 30%;
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-md);
}

.hero-ctas .cta-button {
    text-decoration: none;
}

.final-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-md);
}

.final-ctas .cta-button {
    text-decoration: none;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
}

.gradient-text {
    background: linear-gradient(135deg, var(--deep-red) 0%, var(--baby-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: var(--spacing-sm);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(255, 0, 60, 0.3);
    border-color: var(--deep-red);
    background: rgba(255, 255, 255, 0.08);
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(4px);
}

.gradient-button {
    background: linear-gradient(135deg, var(--deep-red) 0%, var(--baby-pink) 100%);
    border: none;
    box-shadow: 0 0 30px rgba(255, 0, 60, 0.4);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(255, 0, 60, 0.4);
    }
    50% {
        box-shadow: 0 0 50px rgba(255, 0, 60, 0.6);
    }
}

/* Statement Section */
.statement-section {
    padding: var(--spacing-xl) 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.statement-text {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 300;
    text-align: center;
    color: var(--text-secondary);
    line-height: 1.5;
    letter-spacing: -0.01em;
    max-width: 900px;
    margin: 0 auto;
}

/* Features Section */
.features-section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-md);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: var(--spacing-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 0, 60, 0.15);
    border-color: rgba(255, 0, 60, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.feature-number {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-tertiary);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 2px;
}

.feature-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.feature-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Emotional Section */
.emotional-section {
    padding: var(--spacing-xl) 0;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.split-text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.emotional-paragraph {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.emotional-quote {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 500;
    line-height: 1.4;
    margin-top: var(--spacing-sm);
}

.split-visual {
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--deep-red) 0%, var(--baby-pink) 100%);
    opacity: 0.3;
}

.emotional-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    transition: transform 0.5s ease;
}

.split-visual:hover .emotional-image {
    transform: scale(1.05);
}

/* Timeline Section */
.timeline-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-black);
}

.timeline-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: var(--spacing-lg) 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(255, 0, 60, 0.2) 10%, 
        rgba(255, 0, 60, 0.3) 50%, 
        rgba(255, 0, 60, 0.2) 90%, 
        transparent 100%);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: var(--spacing-xl);
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--deep-red);
    border: 4px solid var(--bg-black);
    box-shadow: 0 0 30px rgba(255, 0, 60, 0.6), 0 0 60px rgba(255, 0, 60, 0.3);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    box-shadow: 0 0 40px rgba(255, 0, 60, 0.8), 0 0 80px rgba(255, 0, 60, 0.4);
    transform: translateX(-50%) scale(1.2);
}

.timeline-content {
    width: 45%;
    padding: 0;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    text-align: right;
    padding-right: var(--spacing-md);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    text-align: left;
    padding-left: var(--spacing-md);
}

.timeline-date {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.timeline-text {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.7;
    color: var(--text-secondary);
    font-weight: 400;
    font-style: italic;
}

/* Page Navigation */
.page-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(11, 11, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1.5rem 0;
}

.page-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-back {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-back:hover {
    color: var(--text-primary);
}

.nav-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

/* Letters Landing Page */
.letters-landing {
    padding: calc(var(--spacing-xl) + 80px) 0 var(--spacing-xl);
    min-height: 100vh;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-tertiary);
    font-weight: 400;
}

.letters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: var(--spacing-md);
}

.letter-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.letter-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 0, 60, 0.4);
    box-shadow: 0 10px 30px rgba(255, 0, 60, 0.15);
}

.letter-char {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--deep-red) 0%, var(--baby-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.letter-word {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Letter Modal */
.letter-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow-y: auto;
}

.letter-modal-content {
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: var(--spacing-lg);
    margin: auto;
}

.letter-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.letter-modal-close:hover {
    background: var(--glass-bg);
    transform: rotate(90deg);
}

.letter-viewer {
    padding-top: 1rem;
}

.letter-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--glass-border);
}

.letter-number {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--deep-red) 0%, var(--baby-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.letter-title {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.letter-body {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    white-space: pre-line;
    margin-bottom: var(--spacing-md);
    min-height: 300px;
}

.letter-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--glass-border);
}

.letter-nav-btn {
    padding: 0.75rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.letter-nav-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--deep-red);
    transform: translateY(-2px);
}

/* Game Page */
.game-page {
    padding: calc(var(--spacing-xl) + 80px) 0 var(--spacing-xl);
    min-height: 100vh;
}

/* Game Section */
.game-section {
    padding: var(--spacing-xl) 0;
}

.game-container {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-lg);
}

.game-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.game-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--glass-border);
}

.stat-item {
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-tertiary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--deep-red) 0%, var(--baby-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-content {
    text-align: center;
}

.question-display {
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

#question-text {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 400;
}

.game-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.game-btn {
    min-width: 200px;
    justify-content: center;
}

.game-result {
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm);
    border-radius: 16px;
    display: none;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.game-result.show {
    display: block;
}

.game-result p {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 500;
}

/* Rishika Birthday Video Center - TikTok Style */
.video-center-section {
    padding: 0;
    background: var(--bg-black);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.video-center-container {
    max-width: 100%;
    margin: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.video-center-header {
    text-align: center;
    padding: 2rem 2rem 1rem;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: linear-gradient(180deg, rgba(11, 11, 15, 0.95) 0%, rgba(11, 11, 15, 0) 100%);
    pointer-events: none;
}

.video-feed {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 0;
    position: relative;
    isolation: isolate;
    margin-top: 0;
}

.video-feed::-webkit-scrollbar {
    width: 0;
    background: transparent;
}

.video-item {
    width: 100%;
    max-width: 500px;
    height: 100vh;
    min-height: 100vh;
    position: relative;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-black);
    margin: 0 auto;
}

.premium-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--bg-black);
    border-radius: 0;
}

.video-item.active .premium-video {
    cursor: pointer;
}

.video-scroll-indicator {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    pointer-events: none;
    z-index: 100;
    animation: bounce-indicator 2s infinite;
    opacity: 0.7;
    background: rgba(11, 11, 15, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.video-scroll-indicator svg {
    width: 24px;
    height: 24px;
}

@keyframes bounce-indicator {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.video-scroll-indicator.hidden {
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Gallery Section */
.gallery-section {
    padding: var(--spacing-xl) 0;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: var(--spacing-md);
}

.photo-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.photo-item:hover {
    transform: translateY(-8px) scale(1.02);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.photo-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--spacing-xl);
    color: var(--text-tertiary);
}

/* Final CTA Section */
.final-cta {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--bg-black) 0%, #050508 100%);
}

.final-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.final-statement {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .split-visual {
        height: 300px;
    }

    .timeline-container {
        max-width: 100%;
        padding: var(--spacing-md) 0;
    }

    .timeline-container::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 3rem;
        margin-bottom: var(--spacing-lg);
    }

    .timeline-dot {
        left: 20px;
        width: 14px;
        height: 14px;
        border-width: 3px;
    }

    .timeline-content {
        width: 100%;
        text-align: left !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0;
        margin-right: 0;
        text-align: left !important;
    }

    .timeline-date {
        font-size: 1rem;
    }

    .timeline-text {
        font-size: 0.9375rem;
    }

    .feature-cards {
        grid-template-columns: 1fr;
    }

    .video-feed {
        height: 100vh;
    }

    .video-item {
        max-width: 100%;
    }

    .video-center-header {
        padding: 1.5rem 1rem 0.5rem;
        font-size: 0.875rem;
    }

    .video-center-header .section-title {
        font-size: 1.5rem;
    }

    .video-center-header .section-subtitle {
        font-size: 0.75rem;
    }

    .video-scroll-indicator {
        bottom: 1rem;
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }

    .video-scroll-indicator svg {
        width: 20px;
        height: 20px;
    }

    .photo-grid {
        grid-template-columns: 1fr;
    }

    .letters-grid {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 0.75rem;
    }

    .letter-card {
        padding: 1rem 0.5rem;
    }

    .letter-char {
        font-size: 1.5rem;
    }

    .letter-word {
        font-size: 0.625rem;
    }

    .letter-modal-content {
        padding: var(--spacing-md);
    }

    .letter-number {
        font-size: 3rem;
    }

    .letter-body {
        font-size: 1rem;
    }

    .letter-navigation {
        flex-direction: column;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-ctas .cta-button {
        width: 100%;
        justify-content: center;
    }

    .final-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .final-ctas .cta-button {
        width: 100%;
        justify-content: center;
    }

    .game-stats {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .container {
        padding: 0 1.5rem;
    }
}

/* Smooth Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}
