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

        body {
            background: #000;
            color: #fff;
            font-family: 'Space Grotesk', sans-serif;
            width: 100vw;
            height: 100vh;
            overflow: hidden;
            position: relative;
        }

        .grid {
            position: fixed;
            inset: 0;
            background-image: 
                linear-gradient(rgba(0, 255, 255, 0.08) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 255, 255, 0.08) 1px, transparent 1px);
            background-size: 60px 60px;
            animation: grid 25s linear infinite;
        }

        @keyframes grid {
            from { background-position: 0 0; }
            to { background-position: 60px 60px; }
        }

        .audio-btn {
            position: fixed;
            top: 24px;
            right: 24px;
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: rgba(0, 255, 255, 0.15);
            border: 2px solid #0ff;
            color: #0ff;
            font-size: 1.4rem;
            cursor: pointer;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .audio-btn:hover {
            background: rgba(0, 255, 255, 0.35);
            box-shadow: 0 0 25px rgba(0, 255, 255, 0.6);
            transform: scale(1.05);
        }

        .status-bar {
            position: fixed;
            top: 18%;
            left: 50%;
            transform: translateX(-50%);
            font-family: 'Roboto Mono', monospace;
            font-size: 1.8rem;
            color: #0ff;
            text-shadow: 0 0 30px #0ff;
            letter-spacing: 4px;
            opacity: 0;
            transition: opacity 0.5s ease;
            white-space: nowrap;
            z-index: 100;
        }

        .status-bar .highlight {
            color: #fd0;
            text-shadow: 0 0 30px #fd0;
            font-weight: 700;
        }

        .display-box {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: linear-gradient(135deg, rgba(0, 40, 60, 0.6), rgba(0, 20, 40, 0.8));
            border: 3px solid rgba(0, 255, 255, 0.8);
            border-radius: 24px;
            box-shadow: 
                0 0 60px rgba(0, 255, 255, 0.3),
                inset 0 0 80px rgba(0, 255, 255, 0.05);
            width: min(850px, 90vw);
            height: min(420px, 70vh);
            z-index: 10;
            transition: all 0.8s ease;
        }

        .display-box.fade-out {
            opacity: 0;
            transform: translate(-50%, -50%) scale(0.95);
            pointer-events: none;
        }

        .display-box.hidden-initial {
            opacity: 0;
        }

        .scan-line {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, transparent, #f0f, #0ff, #f0f, transparent);
            box-shadow: 0 0 40px #0ff, 0 0 60px #f0f;
            opacity: 0;
            border-radius: 4px;
        }

        .scan-line.active {
            opacity: 1;
            animation: scan 2.5s ease-in-out infinite;
        }

        @keyframes scan {
            0% { top: 0; }
            50% { top: calc(100% - 4px); }
            100% { top: 0; }
        }

        .init-wrapper {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 200;
        }

        .init-wrapper.hidden {
            display: none;
        }

        .init-button {
            background: linear-gradient(135deg, rgba(0, 255, 255, 0.25), rgba(255, 0, 255, 0.25));
            border: 3px solid #0ff;
            color: #fff;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            padding: 20px 50px;
            cursor: pointer;
            letter-spacing: 5px;
            border-radius: 14px;
            box-shadow: 
                0 0 40px rgba(0, 255, 255, 0.5),
                inset 0 0 20px rgba(0, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .init-button:hover {
            box-shadow: 
                0 0 60px rgba(0, 255, 255, 0.8),
                inset 0 0 30px rgba(0, 255, 255, 0.2);
            transform: scale(1.03);
        }

        .stage {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .word-stack {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .word-line {
            display: flex;
            justify-content: center;
            align-items: center;
            letter-spacing: 8px;
        }

        .letter {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 4.2rem;
            font-weight: 700;
            text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
            transition: opacity 0.4s ease, color 0.4s ease, text-shadow 0.4s ease;
            display: inline-block;
        }

        .letter.fade {
            opacity: 0.04;
            color: #111;
            text-shadow: none;
        }

        .letter.cyan {
            color: #0ff;
            text-shadow: 0 0 40px #0ff, 0 0 80px #0ff;
        }

        .letter.gold {
            color: #fd0;
            text-shadow: 0 0 40px #fd0, 0 0 80px rgba(255, 221, 0, 0.5);
        }

        .letter.dim {
            opacity: 0.3;
            text-shadow: none;
        }

        .horizontal-line {
            display: none;
            justify-content: center;
            align-items: center;
            width: 100%;
        }

        .horizontal-line.visible {
            display: flex;
        }

        .horizontal-line .letter {
            margin: 0 4px;
        }

        .ascii-display {
            position: absolute;
            bottom: 18%;
            left: 50%;
            transform: translateX(-50%);
            font-family: 'Roboto Mono', monospace;
            font-size: 1.6rem;
            color: #0ff;
            text-shadow: 0 0 20px #0ff;
            letter-spacing: 3px;
            opacity: 0;
            transition: opacity 0.4s ease;
            white-space: nowrap;
        }

        .ascii-display.visible {
            opacity: 1;
        }

        .ascii-display .label {
            color: #888;
        }

        .ascii-display .char {
            color: #0ff;
            text-shadow: 0 0 20px #0ff;
            font-weight: 700;
        }

        .ascii-display .equals {
            color: #555;
            margin: 0 10px;
        }

        .ascii-display .code {
            color: #fd0;
            text-shadow: 0 0 25px #fd0;
            font-weight: 700;
            font-size: 1.8rem;
        }

        .year-display {
            display: none;
            flex-direction: column;
            align-items: center;
            gap: 30px;
            width: 100%;
            text-align: center;
            padding: 0 20px;
        }

        .year-display.visible {
            display: flex;
        }

        .year-number {
            font-size: 7rem;
            font-weight: 700;
            letter-spacing: 15px;
        }

        .year-prefix {
            color: #fff;
            opacity: 0;
            transition: opacity 0.8s ease;
        }

        .year-prefix.visible {
            opacity: 1;
        }

        .year-suffix {
            color: #fd0;
            text-shadow: 0 0 60px rgba(255, 221, 0, 0.8);
        }

        .year-label {
            font-family: 'Roboto Mono', monospace;
            font-size: 1.3rem;
            color: #0ff;
            letter-spacing: 3px;
            opacity: 0;
            transition: opacity 0.8s ease;
            text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
            max-width: 650px;
            line-height: 1.8;
        }

        .year-label.visible {
            opacity: 1;
        }

        .info-area {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            opacity: 0;
            transition: opacity 1s ease;
            z-index: 50;
            width: 90%;
            max-width: 1100px;
            pointer-events: none;
            display: none;
        }

        .info-area.visible {
            opacity: 1;
            pointer-events: all;
            display: block;
        }

        .domain-title {
            font-size: 8rem;
            font-weight: 700;
            letter-spacing: 8px;
            margin-bottom: 40px;
        }

        .domain-title .num {
            color: #fd0;
            text-shadow: 0 0 80px rgba(255, 221, 0, 0.7), 0 0 150px rgba(255, 221, 0, 0.4);
        }

        .domain-title .tld {
            color: #0ff;
            text-shadow: 0 0 80px rgba(0, 255, 255, 0.7), 0 0 150px rgba(0, 255, 255, 0.4);
        }

        .tagline {
            font-size: 2.6rem;
            color: #fd0;
            letter-spacing: 5px;
            margin-bottom: 40px;
            text-shadow: 0 0 40px rgba(255, 221, 0, 0.5);
            font-weight: 700;
        }

        .quote-block {
            font-family: 'Roboto Mono', monospace;
            font-size: 1.6rem;
            color: #aaa;
            line-height: 2.2;
            margin-bottom: 50px;
        }

        .quote-text {
            color: #ccc;
            font-style: italic;
        }

        .quote-author {
            color: #0ff;
            font-weight: 700;
            text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
        }

        .replay-btn {
            background: linear-gradient(135deg, rgba(255, 221, 0, 0.25), rgba(255, 140, 0, 0.25));
            border: 3px solid #fd0;
            color: #fff;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            padding: 18px 50px;
            cursor: pointer;
            letter-spacing: 4px;
            border-radius: 12px;
            transition: all 0.3s ease;
            opacity: 0;
            transform: scale(0.9);
            pointer-events: none;
            margin-bottom: 25px;
        }

        .replay-btn.visible {
            opacity: 1;
            transform: scale(1);
            pointer-events: all;
            animation: pulse-glow 2.5s ease-in-out infinite;
        }

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

        .replay-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 0 60px rgba(255, 221, 0, 0.9);
        }

        .footer-link {
            display: inline-block;
            color: #555;
            text-decoration: none;
            font-size: 1.2rem;
            letter-spacing: 3px;
            transition: all 0.4s ease;
            opacity: 0;
        }

        .footer-link.visible {
            opacity: 1;
            color: #0ff;
        }

        .footer-link:hover {
            text-shadow: 0 0 20px #0ff;
            transform: scale(1.02);
        }

        @keyframes glow-pulse {
            0%, 100% { 
                text-shadow: 0 0 40px #fd0, 0 0 80px rgba(255, 221, 0, 0.5);
            }
            50% { 
                text-shadow: 0 0 60px #fd0, 0 0 120px rgba(255, 221, 0, 0.8), 0 0 180px rgba(255, 221, 0, 0.4);
            }
        }

        .letter.pulse {
            animation: glow-pulse 1.5s ease-in-out infinite;
        }

        @media (max-width: 768px) {
            .status-bar {
                font-size: 1.5rem;
                letter-spacing: 2px;
                top: 14%;
                padding: 0 20px;
                white-space: normal;
                text-align: center;
                width: 100%;
            }
            .display-box {
                width: 90%;
                height: 50vh;
                min-height: 280px;
            }
            .scan-line {
                height: 3px;
            }
            .ascii-display {
                font-size: 1.3rem;
                bottom: 15%;
            }
            .ascii-display .code {
                font-size: 1.5rem;
            }
            .letter {
                font-size: 2.8rem;
            }
            .word-line {
                letter-spacing: 5px;
            }
            .horizontal-line .letter {
                margin: 0 3px;
            }
            .year-number {
                font-size: 5rem;
                letter-spacing: 10px;
            }
            .year-display {
                gap: 20px;
            }
            .year-label {
                font-size: 1.1rem;
                letter-spacing: 2px;
                padding: 0 10px;
            }
            .domain-title {
                font-size: 5rem;
                margin-bottom: 30px;
                letter-spacing: 6px;
            }
            .tagline {
                font-size: 1.7rem;
                margin-bottom: 30px;
                letter-spacing: 3px;
                padding: 0 10px;
            }
            .quote-block {
                font-size: 1.25rem;
                margin-bottom: 35px;
                padding: 0 10px;
            }
            .replay-btn {
                font-size: 1.2rem;
                padding: 15px 40px;
            }
            .footer-link {
                font-size: 1rem;
            }
            .audio-btn {
                width: 46px;
                height: 46px;
                font-size: 1.2rem;
                top: 16px;
                right: 16px;
            }
            .init-button {
                font-size: 1.2rem;
                padding: 18px 40px;
            }
        }

        @media (max-width: 480px) {
            .status-bar {
                font-size: 1.25rem;
                letter-spacing: 1px;
                top: 11%;
            }
            .display-box {
                width: 92%;
                height: 45vh;
                min-height: 240px;
                border-radius: 18px;
            }
            .scan-line {
                height: 3px;
            }
            .ascii-display {
                font-size: 1.1rem;
                bottom: 12%;
            }
            .ascii-display .code {
                font-size: 1.3rem;
            }
            .letter {
                font-size: 2.2rem;
            }
            .word-line {
                letter-spacing: 4px;
            }
            .year-number {
                font-size: 4rem;
                letter-spacing: 8px;
            }
            .year-label {
                font-size: 1rem;
            }
            .domain-title {
                font-size: 3.8rem;
                letter-spacing: 5px;
                margin-bottom: 25px;
            }
            .tagline {
                font-size: 1.4rem;
                margin-bottom: 25px;
            }
            .quote-block {
                font-size: 1.1rem;
                margin-bottom: 30px;
            }
            .replay-btn {
                font-size: 1.1rem;
                padding: 14px 32px;
            }
            .footer-link {
                font-size: 0.95rem;
            }
            .init-button {
                font-size: 1.1rem;
                padding: 16px 32px;
                letter-spacing: 4px;
            }
        }
