
        :root {
            --night: #0A0A0A;
            --stadium-white: #F5F5F5;
            --victory-red: #E10600;
            --turf-green: #1F7A4D;
            --warm-gold: #D4AF37;
            --fog: #9A9A9A;
        }

        * { cursor: crosshair; }
        body {
            background-color: var(--night);
            color: var(--stadium-white);
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* Typography */
        .athletic { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.05em; line-height: 0.9; }
        .cursive { font-family: 'Great Vibes', cursive; color: var(--warm-gold); }
        .serif { font-family: 'Playfair Display', serif; }
        .mono { font-family: 'IBM Plex Mono', monospace; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.2em; }

        /* Animation & Motion */
        .reveal { opacity: 0; transform: translateY(50px); transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
        .reveal.active { opacity: 1; transform: translateY(0); }
        
        .parallax-bg {
            background-attachment: fixed;
            background-position: center;
            background-size: cover;
        }

        /* Scrollbar */
        ::-webkit-scrollbar { width: 4px; }
        ::-webkit-scrollbar-track { background: var(--night); }
        ::-webkit-scrollbar-thumb { background: var(--victory-red); border-radius: 10px; }

        /* Buttons */
        .btn-premium {
            position: relative;
            padding: 1.25rem 3rem;
            border: 1px solid rgba(255,255,255,0.1);
            overflow: hidden;
            transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            background: transparent;
            color: white;
            display: inline-block;
        }
        .btn-premium:hover {
            border-color: var(--victory-red);
            color: var(--victory-red);
            padding-left: 3.5rem;
        }
        .btn-premium::before {
            content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(225, 6, 0, 0.1), transparent);
            transition: 0.6s; z-index: -1;
        }
        .btn-premium:hover::before { left: 100%; }

        /* Layout Utilities */
        .page { display: none; min-height: 100vh; }
        .page.active { display: block; animation: pageFade 1.2s ease-out; }
        @keyframes pageFade { from { opacity: 0; transform: scale(1.02); } to { opacity: 1; transform: scale(1); } }

        #story-modal {
            position: fixed; inset: 0; background: rgba(5,5,5,0.98);
            z-index: 9999; display: none; overflow-y: auto; padding: 5vh 5vw;
        }

        .nav-blur { backdrop-filter: blur(20px); background: rgba(10,10,10,0.7); }
    /* Chapter Navigation */
    .chapter-nav {
        position: relative;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .chapter-nav.active .chapter-dot {
        background: #FF0000;
        transform: scale(1.5);
    }
    
    .chapter-dot {
        width: 4px;
        height: 4px;
        background: #666;
        border-radius: 50%;
        transition: all 0.3s ease;
    }
    
    .chapter-label {
        position: absolute;
        left: -30px;
        font-size: 10px;
        color: #666;
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .chapter-nav:hover .chapter-label {
        opacity: 1;
        left: -40px;
    }
    
    .chapter-nav:hover .chapter-dot {
        background: #FF0000;
        transform: scale(1.2);
    }
    
    /* Progress Indicator */
    .progress-indicator {
        transition: width 0.3s ease;
    }
    
    /* Noise Texture */
    .noise-texture {
        position: absolute;
        inset: 0;
        background: 
            url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxmaWx0ZXIgaWQ9Im5vaXNlIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iMC45IiBudW1PY3RhdmVzPSIzIiBzdGl0Y2hUaWxlcz0ic3RpdGNoIi8+PC9maWx0ZXI+PC9kZWZzPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbHRlcj0idXJsKCNub2lzZSkiIG9wYWNpdHk9IjAuMDMiLz48L3N2Zz4=');
        opacity: 0.1;
    }
    
    /* Particle Animation */
    .particle {
        position: absolute;
        background: #FF0000;
        border-radius: 50%;
        animation: float 20s infinite linear;
    }
    
    .p1 { width: 2px; height: 2px; top: 20%; left: 10%; animation-delay: 0s; }
    .p2 { width: 3px; height: 3px; top: 60%; right: 15%; animation-delay: 3s; }
    .p3 { width: 1px; height: 1px; bottom: 30%; left: 20%; animation-delay: 6s; }
    
    @keyframes float {
        0%, 100% { transform: translate(0, 0); }
        25% { transform: translate(20px, 20px); }
        50% { transform: translate(40px, 0); }
        75% { transform: translate(20px, -20px); }
    }
    
    /* Grid Patterns */
    .grid-pattern-1 {
        background-image: 
            linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
        background-size: 50px 50px;
    }
    
    .topographic-pattern {
        background-image: 
            radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
        background-size: 20px 20px;
    }
    
    /* Text Animations */
    .typewriter-text {
        overflow: hidden;
        border-right: 2px solid #FF0000;
        white-space: nowrap;
        animation: typing 2s steps(40, end), blink 0.75s step-end infinite;
    }
    
    @keyframes typing {
        from { width: 0; }
        to { width: 100%; }
    }
    
    @keyframes blink {
        from, to { border-color: transparent; }
        50% { border-color: #FF0000; }
    }
    
    /* Character Stagger */
    .char-stagger {
        display: inline-block;
        opacity: 0;
        transform: translateY(20px);
        animation: charStagger 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
    
    @keyframes charStagger {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Line Reveal */
    .line-reveal {
        display: inline-block;
        overflow: hidden;
        line-height: 1.2;
    }
    
    /* Fade In Up */
    .fade-in-up {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
    
    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Scroll Indicator */
    .scroll-indicator {
        position: relative;
    }
    
    .scroll-dot {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 3px;
        height: 3px;
        background: #FF0000;
        border-radius: 50%;
        animation: scrollDot 2s ease-in-out infinite;
    }
    
    @keyframes scrollDot {
        0% {
            top: 0;
            opacity: 0;
        }
        50% {
            opacity: 1;
        }
        100% {
            top: 100%;
            opacity: 0;
        }
    }
    
    /* Stadium Text Animation */
    .stadium-text {
        animation: stadiumFloat 20s ease-in-out infinite;
    }
    
    @keyframes stadiumFloat {
        0%, 100% { transform: translate(-50%, -50%) scale(1); }
        50% { transform: translate(-50%, -50%) scale(1.05); }
    }
    
    /* Title Split Animation */
    .title-word {
        display: block;
        overflow: hidden;
    }
    
    .title-word:nth-child(1) {
        animation: titleSlideUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        animation-delay: 0.3s;
    }
    
    .title-word:nth-child(2) {
        animation: titleSlideUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        animation-delay: 0.6s;
    }
    
    @keyframes titleSlideUp {
        from {
            transform: translateY(100%);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
    
    .title-line {
        transform: scaleX(0);
        transform-origin: left;
        animation: lineExtend 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        animation-delay: 1s;
    }
    
    @keyframes lineExtend {
        to {
            transform: scaleX(1);
        }
    }
    
    /* Letter Spacing Animation */
    .letter-spacing {
        animation: letterSpace 2s ease-out forwards;
    }
    
    @keyframes letterSpace {
        from {
            letter-spacing: 0;
            opacity: 0;
        }
        to {
            letter-spacing: 1.5em;
            opacity: 0.5;
        }
    }
    
    /* Scale In Animation */
    .scale-in {
        animation: scaleIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        opacity: 0;
    }
    
    @keyframes scaleIn {
        from {
            transform: scale(0.9);
            opacity: 0;
        }
        to {
            transform: scale(1);
            opacity: 1;
        }
    }
    
    /* Slide Animations */
    .slide-in-left {
        opacity: 0;
        transform: translateX(-50px);
        animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
    
    .slide-in-right {
        opacity: 0;
        transform: translateX(50px);
        animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
    
    @keyframes slideInLeft {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    @keyframes slideInRight {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    /* Text Outline */
    .text-outline {
        color: transparent;
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
        text-stroke: 1px rgba(255, 255, 255, 0.3);
    }
    
    /* Quote Marks */
    .quote-marks {
        font-size: 10rem;
        color: #FF0000;
        opacity: 0.2;
        position: absolute;
        top: -40px;
        left: -20px;
        font-family: serif;
    }
    
    .quote-marks-small {
        font-size: 4rem;
        color: #FF0000;
        opacity: 0.2;
        position: absolute;
        top: -20px;
        left: -10px;
        font-family: serif;
    }
    
    .quote-marks-large {
        font-size: 15rem;
        color: #FF0000;
        opacity: 0.1;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        font-family: serif;
        pointer-events: none;
    }
    
    /* Paragraph Reveal */
    .paragraph-reveal {
        opacity: 0;
        transform: translateY(20px);
        animation: paragraphReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
    
    @keyframes paragraphReveal {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Image Parallax */
    .image-container {
        position: relative;
        overflow: hidden;
        border-radius: 4px;
    }
    
    .image-parallax {
        transition: transform 0.3s ease-out;
    }
    
    .image-container:hover .image-parallax {
        transform: scale(1.05);
    }
    
    .image-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .image-container:hover .image-overlay {
        opacity: 1;
    }
    
    /* Echo Circles */
    .echo-circle {
        position: absolute;
        border: 1px solid rgba(255, 0, 0, 0.1);
        border-radius: 50%;
        animation: echoPulse 4s ease-out infinite;
    }
    
    .c1 {
        width: 300px;
        height: 300px;
        top: 20%;
        left: 10%;
        animation-delay: 0s;
    }
    
    .c2 {
        width: 500px;
        height: 500px;
        bottom: 20%;
        right: 10%;
        animation-delay: 1s;
    }
    
    .c3 {
        width: 200px;
        height: 200px;
        top: 60%;
        left: 30%;
        animation-delay: 2s;
    }
    
    @keyframes echoPulse {
        0% {
            transform: scale(1);
            opacity: 0.5;
        }
        100% {
            transform: scale(1.5);
            opacity: 0;
        }
    }
    
    /* Quote Text Animation */
    .quote-text {
        position: relative;
        opacity: 0;
        animation: quoteReveal 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        animation-delay: 0.5s;
    }
    
    @keyframes quoteReveal {
        from {
            opacity: 0;
            transform: translateY(50px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Timeline Cards */
    .timeline-card {
        padding: 24px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 4px;
        transition: all 0.3s ease;
        opacity: 0;
        transform: translateY(20px);
        animation: timelineReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
    
    .timeline-card:nth-child(1) { animation-delay: 0.3s; }
    .timeline-card:nth-child(2) { animation-delay: 0.6s; }
    .timeline-card:nth-child(3) { animation-delay: 0.9s; }
    
    @keyframes timelineReveal {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .timeline-card:hover {
        background: rgba(255, 0, 0, 0.1);
        border-color: #FF0000;
        transform: translateY(-5px);
    }
    
    .timeline-year {
        font-size: 3rem;
        font-family: 'Athletic', sans-serif;
        color: #FF0000;
        margin-bottom: 12px;
    }
    
    /* Final Reveal */
    .final-reveal {
        display: inline-block;
        overflow: hidden;
        position: relative;
    }
    
    .final-reveal::after {
        content: '';
        position: absolute;
        inset: 0;
        background: black;
        animation: finalReveal 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        animation-delay: 0.5s;
    }
    
    @keyframes finalReveal {
        to {
            transform: translateX(100%);
        }
    }
    
    .final-fade {
        opacity: 0;
        animation: finalFade 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        animation-delay: 1.5s;
    }
    
    @keyframes finalFade {
        to {
            opacity: 1;
        }
    }
    
    /* Count Up Animation */
    .count-up {
        opacity: 0;
        animation: countUpFade 1s ease-out forwards;
        animation-delay: 2s;
    }
    
    @keyframes countUpFade {
        to {
            opacity: 1;
        }
    }
    
    /* Additional Animations */
    .animate-float-slow {
        animation: floatSlow 6s ease-in-out infinite;
    }
    
    @keyframes floatSlow {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-20px);
        }
    }
    
    .animate-pulse-slow {
        animation: pulseSlow 4s ease-in-out infinite;
    }
    
    @keyframes pulseSlow {
        0%, 100% {
            opacity: 0.5;
        }
        50% {
            opacity: 1;
        }
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
        .particle, .echo-circle, .chapter-nav {
            display: none;
        }
        
        .quote-marks, .quote-marks-small, .quote-marks-large {
            display: none;
        }
        
        .title-split .title-word {
            display: inline;
        }
    }
    
    /* Reduced Motion Support */
    @media (prefers-reduced-motion: reduce) {
        .char-stagger,
        .fade-in-up,
        .scale-in,
        .slide-in-left,
        .slide-in-right,
        .paragraph-reveal,
        .quote-text,
        .timeline-card,
        .final-reveal::after,
        .final-fade,
        .count-up,
        .animate-float-slow,
        .animate-pulse-slow,
        .particle,
        .echo-circle,
        .stadium-text,
        .title-word,
        .title-line,
        .letter-spacing,
        .typewriter-text,
        .scroll-dot {
            animation: none !important;
            opacity: 1 !important;
            transform: none !important;
            border: none !important;
        }
        
        .image-container:hover .image-parallax {
            transform: none;
        }
        
        .timeline-card:hover {
            transform: none;
        }
    }    /* Story Navigation */
    .story-chapter {
        position: relative;
        padding: 8px;
        display: flex;
        align-items: center;
        gap: 12px;
        transition: all 0.3s ease;
    }
    
    .story-chapter.active .story-dot {
        background: #FF0000;
        transform: scale(1.5);
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    }
    
    .story-dot {
        width: 6px;
        height: 6px;
        background: #444;
        border-radius: 50%;
        transition: all 0.3s ease;
    }
    
    .story-label {
        font-size: 10px;
        color: #666;
        opacity: 0;
        transform: translateX(-10px);
        transition: all 0.3s ease;
        position: absolute;
        left: 30px;
        white-space: nowrap;
    }
    
    .story-chapter:hover .story-label {
        opacity: 1;
        transform: translateX(0);
    }
    
    .story-chapter:hover .story-dot {
        background: #FF0000;
        transform: scale(1.2);
    }
    
    /* Progress Bar */
    .story-progress {
        transition: width 0.3s ease;
    }
    
    /* Sound Controls */
    .sound-control {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        color: #666;
        transition: all 0.3s ease;
    }
    
    .sound-control.active {
        background: rgba(255, 0, 0, 0.1);
        color: #FF0000;
    }
    
    .sound-control:hover {
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }
    
    /* Chapter Sections */
    .story-chapter-section {
        scroll-snap-align: start;
        position: relative;
    }
    
    /* Typewriter Effect */
    .story-typewriter {
        overflow: hidden;
        border-right: 2px solid #FF0000;
        white-space: nowrap;
        animation: storyTyping 2s steps(40, end), blink 0.75s step-end infinite;
    }
    
    @keyframes storyTyping {
        from { width: 0; }
        to { width: 100%; }
    }
    
    /* Title Reveal */
    .story-title-reveal {
        display: inline-block;
        position: relative;
        overflow: hidden;
    }
    
    .story-title-reveal::after {
        content: '';
        position: absolute;
        inset: 0;
        background: black;
        animation: titleReveal 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        animation-delay: 0.5s;
    }
    
    @keyframes titleReveal {
        to {
        transform: translateX(100%);
        }
    }
    
    /* Fade In */
    .story-fade-in {
        opacity: 0;
        animation: storyFadeIn 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
    
    @keyframes storyFadeIn {
        to {
        opacity: 1;
        }
    }
    
    /* Quote Marks */
    .story-quote-marks {
        font-size: 8rem;
        color: #FF0000;
        opacity: 0.2;
        position: absolute;
        top: -40px;
        left: 50%;
        transform: translateX(-50%);
        font-family: serif;
    }
    
    /* Scroll Dot */
    .scroll-dot-story {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 3px;
        height: 3px;
        background: #FF0000;
        border-radius: 50%;
        animation: scrollDot 2s ease-in-out infinite;
    }
    
    /* Photograph Grid */
    .photograph-grid {
        position: absolute;
        inset: 0;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 2px;
        opacity: 0.05;
    }
    
    .photo-cell {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    /* Text Fragments */
    .text-fragment {
        position: absolute;
        color: rgba(255, 255, 255, 0.1);
        font-family: serif;
        font-style: italic;
        animation: fragmentFloat 20s linear infinite;
    }
    
    .f1 { top: 20%; left: 10%; animation-delay: 0s; }
    .f2 { top: 60%; right: 15%; animation-delay: 5s; }
    .f3 { bottom: 30%; left: 20%; animation-delay: 10s; }
    
    @keyframes fragmentFloat {
        0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.1; }
        50% { transform: translate(20px, 20px) rotate(5deg); opacity: 0.05; }
    }
    
    /* Paragraph Animation */
    .story-paragraph {
        opacity: 0;
        transform: translateY(20px);
        animation: paragraphAppear 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
    
    @keyframes paragraphAppear {
        to {
        opacity: 1;
        transform: translateY(0);
        }
    }
    
    /* Story Image */
    .story-image-container {
        position: relative;
        overflow: hidden;
        border-radius: 4px;
    }
    
    .story-image {
        width: 100%;
        height: auto;
        transition: all 1s ease;
    }
    
    .story-image-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .story-image-container:hover .story-image-overlay {
        opacity: 1;
    }
    
    /* Polaroid Animation */
    .story-polaroid {
        opacity: 0;
        transform: translateY(20px) rotate(6deg);
        animation: polaroidAppear 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        animation-delay: 0.5s;
    }
    
    @keyframes polaroidAppear {
        to {
        opacity: 1;
        transform: translateY(0) rotate(6deg);
        }
    }
    
    /* Coordinate Animation */
    .story-coordinate {
        opacity: 0;
        transform: translateX(-20px);
        animation: coordinateAppear 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        animation-delay: 0.3s;
    }
    
    @keyframes coordinateAppear {
        to {
        opacity: 1;
        transform: translateX(0);
        }
    }
    
    /* Witness Cards */
    .witness-card {
        padding: 20px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 4px;
        transition: all 0.3s ease;
        opacity: 0;
        transform: translateY(20px);
        animation: witnessAppear 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
    
    .witness-card:nth-child(1) { animation-delay: 0.1s; }
    .witness-card:nth-child(2) { animation-delay: 0.2s; }
    .witness-card:nth-child(3) { animation-delay: 0.3s; }
    .witness-card:nth-child(4) { animation-delay: 0.4s; }
    
    @keyframes witnessAppear {
        to {
        opacity: 1;
        transform: translateY(0);
        }
    }
    
    .witness-card:hover {
        background: rgba(255, 0, 0, 0.1);
        border-color: #FF0000;
        transform: translateY(-5px);
    }
    
    .witness-number {
        font-size: 2rem;
        font-family: 'Athletic', sans-serif;
        color: #FF0000;
        margin-bottom: 8px;
    }
    
    /* Ghost Overlay */
    .ghost-overlay {
        position: absolute;
        inset: 0;
        background: 
            radial-gradient(circle at 20% 30%, rgba(255, 0, 0, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(255, 0, 0, 0.03) 0%, transparent 50%);
    }
    
    /* Floating Numbers */
    .floating-number {
        position: absolute;
        font-size: 8rem;
        font-family: 'Athletic', sans-serif;
        color: rgba(255, 255, 255, 0.03);
        animation: numberFloat 30s linear infinite;
    }
    
    .n1 { top: 10%; left: 5%; animation-delay: 0s; }
    .n2 { top: 30%; right: 10%; animation-delay: 10s; }
    .n3 { bottom: 20%; left: 15%; animation-delay: 20s; }
    .n4 { bottom: 40%; right: 20%; animation-delay: 5s; }
    
    @keyframes numberFloat {
        0%, 100% { transform: translate(0, 0) rotate(0deg); }
        25% { transform: translate(20px, 20px) rotate(90deg); }
        50% { transform: translate(40px, 0) rotate(180deg); }
        75% { transform: translate(20px, -20px) rotate(270deg); }
    }
    
    /* Ghost Title Line */
    .ghost-title-line {
        transform: scaleX(0);
        transform-origin: center;
        animation: ghostLineExtend 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        animation-delay: 0.5s;
    }
    
    @keyframes ghostLineExtend {
        to {
        transform: scaleX(1);
        }
    }
    
    /* Ghost Stories */
    .ghost-story {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        overflow: hidden;
        transition: all 0.3s ease;
        opacity: 0;
        transform: translateY(30px);
        animation: ghostStoryAppear 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
    
    .ghost-story:nth-child(1) { animation-delay: 0.1s; }
    .ghost-story:nth-child(2) { animation-delay: 0.3s; }
    .ghost-story:nth-child(3) { animation-delay: 0.5s; }
    
    @keyframes ghostStoryAppear {
        to {
        opacity: 1;
        transform: translateY(0);
        }
    }
    
    .ghost-story:hover {
        background: rgba(255, 0, 0, 0.1);
        border-color: #FF0000;
        transform: translateY(-10px);
    }
    
    .ghost-story-header {
        padding: 20px;
        background: rgba(0, 0, 0, 0.3);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .ghost-year {
        font-size: 2rem;
        font-family: 'Athletic', sans-serif;
        color: #FF0000;
    }
    
    .ghost-location {
        font-family: 'Mono', monospace;
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.6);
    }
    
    .ghost-story-content {
        padding: 20px;
    }
    
    /* Frequency Visualization */
    .ghost-frequency {
        display: flex;
        gap: 4px;
        height: 80px;
        align-items: flex-end;
    }
    
    .frequency-bar {
        flex: 1;
        background: linear-gradient(to top, #FF0000, transparent);
        border-radius: 2px 2px 0 0;
        animation: frequencyPulse 2s ease-in-out infinite;
    }
    
    .frequency-bar:nth-child(1) { animation-delay: 0s; height: 40%; }
    .frequency-bar:nth-child(2) { animation-delay: 0.1s; height: 60%; }
    .frequency-bar:nth-child(3) { animation-delay: 0.2s; height: 80%; }
    .frequency-bar:nth-child(4) { animation-delay: 0.3s; height: 100%; }
    .frequency-bar:nth-child(5) { animation-delay: 0.4s; height: 80%; }
    .frequency-bar:nth-child(6) { animation-delay: 0.5s; height: 60%; }
    .frequency-bar:nth-child(7) { animation-delay: 0.6s; height: 40%; }
    .frequency-bar:nth-child(8) { animation-delay: 0.7s; height: 20%; }
    
    @keyframes frequencyPulse {
        0%, 100% { opacity: 0.5; }
        50% { opacity: 1; }
    }
    
    .frequency-control {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
        color: white;
        transition: all 0.3s ease;
    }
    
    .frequency-control.active {
        background: #FF0000;
    }
    
    .frequency-control:hover {
        background: rgba(255, 255, 255, 0.2);
    }
    
    /* Ritual Background */
    .ritual-bg {
        position: absolute;
        inset: 0;
        background: 
            url('https://images.unsplash.com/photo-1516450360452-9312f5e86fc7?q=80&w=2000') 
            center/cover;
        animation: ritualPan 60s linear infinite;
    }
    
    @keyframes ritualPan {
        0% { transform: scale(1) translate(0, 0); }
        50% { transform: scale(1.1) translate(-2%, -2%); }
        100% { transform: scale(1) translate(0, 0); }
    }
    
    /* Ritual Steps */
    .ritual-step {
        padding: 32px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        transition: all 0.3s ease;
        opacity: 0;
        transform: translateY(30px);
        animation: ritualStepAppear 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
    
    .ritual-step:nth-child(1) { animation-delay: 0.1s; }
    .ritual-step:nth-child(2) { animation-delay: 0.3s; }
    .ritual-step:nth-child(3) { animation-delay: 0.5s; }
    
    @keyframes ritualStepAppear {
        to {
        opacity: 1;
        transform: translateY(0);
        }
    }
    
    .ritual-step:hover {
        background: rgba(255, 0, 0, 0.1);
        border-color: #FF0000;
        transform: translateY(-10px);
    }
    
    .ritual-step-number {
        font-size: 3rem;
        font-family: 'Athletic', sans-serif;
        color: #FF0000;
        opacity: 0.3;
        margin-bottom: 16px;
    }
    
    /* Caretaker Testimonials */
    .caretaker-testimonial {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        padding: 24px;
        margin-bottom: 20px;
        opacity: 0;
        transform: translateX(-20px);
        animation: caretakerAppear 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
    
    .caretaker-testimonial:nth-child(1) { animation-delay: 0.1s; }
    .caretaker-testimonial:nth-child(2) { animation-delay: 0.3s; }
    .caretaker-testimonial:nth-child(3) { animation-delay: 0.5s; }
    
    @keyframes caretakerAppear {
        to {
        opacity: 1;
        transform: translateX(0);
        }
    }
    
    .caretaker-header {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 16px;
    }
    
    .caretaker-avatar {
        width: 48px;
        height: 48px;
        background: #FF0000;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Athletic', sans-serif;
        font-size: 1.5rem;
        color: white;
    }
    
    .caretaker-quote {
        font-family: serif;
        font-style: italic;
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.6;
        margin-bottom: 16px;
    }
    
    .caretaker-meta {
        text-align: right;
    }
    
    /* Epilogue Background */
    .epilogue-bg {
        position: absolute;
        inset: 0;
        background: 
            radial-gradient(circle at 30% 40%, rgba(255, 0, 0, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 70% 60%, rgba(255, 0, 0, 0.05) 0%, transparent 50%);
        animation: epiloguePulse 10s ease-in-out infinite;
    }
    
    @keyframes epiloguePulse {
        0%, 100% { opacity: 0.5; }
        50% { opacity: 1; }
    }
    
    /* Final Words */
    .final-word {
        position: absolute;
        font-size: 6rem;
        font-family: 'Athletic', sans-serif;
        color: rgba(255, 255, 255, 0.03);
        animation: finalWordFloat 40s linear infinite;
    }
    
    .w1 { top: 20%; left: 5%; animation-delay: 0s; }
    .w2 { top: 50%; right: 10%; animation-delay: 13s; }
    .w3 { bottom: 20%; left: 20%; animation-delay: 26s; }
    
    @keyframes finalWordFloat {
        0%, 100% { transform: translate(0, 0) rotate(0deg); }
        25% { transform: translate(30px, 30px) rotate(5deg); }
        50% { transform: translate(60px, 0) rotate(10deg); }
        75% { transform: translate(30px, -30px) rotate(5deg); }
    }
    
    /* Final Title Reveal */
    .final-title-reveal {
        display: inline-block;
        position: relative;
        overflow: hidden;
    }
    
    .final-title-reveal::after {
        content: '';
        position: absolute;
        inset: 0;
        background: black;
        animation: finalTitleReveal 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        animation-delay: 0.3s;
    }
    
    @keyframes finalTitleReveal {
        to {
        transform: translateX(100%);
        }
    }
    
    /* Final Quote Marks */
    .final-quote-marks {
        font-size: 10rem;
        color: #FF0000;
        opacity: 0.1;
        position: absolute;
        top: -60px;
        left: 50%;
        transform: translateX(-50%);
        font-family: serif;
    }
    
    /* Final Statement */
    .final-statement {
        opacity: 0;
        animation: finalStatementAppear 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        animation-delay: 1s;
    }
    
    @keyframes finalStatementAppear {
        to {
        opacity: 1;
        }
    }
    
    /* Final Count Animation */
    .final-count {
        opacity: 0;
        animation: finalCountAppear 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        animation-delay: 1.5s;
    }
    
    @keyframes finalCountAppear {
        to {
        opacity: 1;
        }
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
        .story-chapter,
        .sound-control {
            display: none;
        }
        
        .final-word,
        .floating-number,
        .text-fragment {
            display: none;
        }
        
        .story-title-reveal::after,
        .final-title-reveal::after {
            animation-duration: 1s;
        }
    }
    
    /* Reduced Motion Support */
    @media (prefers-reduced-motion: reduce) {
        .story-typewriter,
        .story-title-reveal::after,
        .story-fade-in,
        .scroll-dot-story,
        .story-paragraph,
        .story-polaroid,
        .story-coordinate,
        .witness-card,
        .ghost-title-line,
        .ghost-story,
        .frequency-bar,
        .ritual-step,
        .caretaker-testimonial,
        .final-title-reveal::after,
        .final-statement,
        .final-count,
        .ritual-bg,
        .epilogue-bg,
        .final-word,
        .floating-number,
        .text-fragment {
            animation: none !important;
            opacity: 1 !important;
            transform: none !important;
        }
        
        .story-image-container:hover .story-image-overlay {
            opacity: 0;
        }
        
        .witness-card:hover,
        .ghost-story:hover,
        .ritual-step:hover {
            transform: none;
        }
    }
