@import url('/assets/css/site.css');

        :root {
            --retro-dot-pattern: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
            --retro-dot-size: 20px 20px;
            --crt-scanlines: repeating-linear-gradient(0deg,
                rgba(0, 0, 0, 0.35) 0px,
                rgba(0, 0, 0, 0.35) 1px,
                rgba(255, 255, 255, 0.12) 1px,
                rgba(255, 255, 255, 0.12) 2px,
                transparent 2px,
                transparent 4px);
            --retro-base-color: #0a0a0a;
            --header-height: 4.5rem;
        }

        body {
            font-family: 'Press Start 2P', 'Courier New', monospace;
            background-color: var(--retro-base-color);
            background-attachment: fixed;
            color: #ffffff;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
        }

        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background-color: rgba(10, 10, 10, 0.92);
            background-image: var(--retro-dot-pattern);
            background-size: var(--retro-dot-size);
            border-bottom: 2px solid #333;
        }

        nav::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(rgba(0, 0, 0, 0.25) 1px, transparent 1px);
            background-size: 100% 3px;
            pointer-events: none;
            z-index: -1;
        }

        .hover-crt {
            position: relative;
            overflow: hidden;
        }

        .hover-crt::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image: var(--crt-scanlines);
            background-size: 100% 3px;
            border-radius: inherit;
            opacity: 0;
            transition: opacity 0.2s ease;
            pointer-events: none;
        }

        .hover-crt:hover::after,
        .hover-crt:focus-visible::after {
            opacity: 0.45;
        }

        .site-gutter {
            width: min(100%, 1200px);
            margin-inline: auto;
            padding-left: clamp(1.5rem, 6vw, 5rem);
            padding-right: clamp(1.5rem, 6vw, 5rem);
        }

        .nav-bar {
            min-height: var(--header-height);
            padding-block: 0.75rem;
        }

        .nav-link {
            position: relative;
            transition: all 0.2s ease;
            text-transform: none;
            letter-spacing: normal;
            color: #ffffff;
            border-color: #ffffff !important;
            display: inline-flex;
            align-items: center;
        }

        .nav-link:hover,
        .nav-link.active {
            background-color: #ffffff;
            color: #000000;
        }

        .brand-logo {
            height: 2rem;
            width: auto;
            display: block;
        }

        .retro-section {
            background-color: rgba(12, 12, 12, 0.92);
        }

        .retro-dots {
            background-image: var(--retro-dot-pattern);
            background-size: var(--retro-dot-size);
        }

        .main-content {
            padding-top: var(--header-height);
        }

        @media (min-width: 768px) {
            .main-content {
                padding-top: calc(var(--header-height) + 0.75rem);
            }
        }

        .highlight-card {
            background: rgba(30, 30, 30, 0.85);
            border: 2px solid rgba(255, 255, 255, 0.08);
            padding: 2rem;
            border-radius: 1rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
        }

        .stat-grid {
            display: grid;
            gap: 1.5rem;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        }

        .stat-card {
            background: rgba(15, 15, 15, 0.9);
            border: 2px solid rgba(255, 255, 255, 0.08);
            padding: 1.5rem;
            border-radius: 0.75rem;
            text-align: center;
        }

        .stat-card h3 {
            color: #fcd34d;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .list-grid {
            display: grid;
            gap: 2rem;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        }

        .list-card {
            background: rgba(20, 20, 20, 0.85);
            border: 2px solid rgba(255, 255, 255, 0.08);
            padding: 1.75rem;
            border-radius: 0.75rem;
        }

        .list-card h3 {
            font-size: 1rem;
            margin-bottom: 1rem;
        }

        .list-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            gap: 0.75rem;
            font-size: 0.85rem;
            color: #d1d5db;
        }

        .timeline {
            border-left: 3px solid rgba(252, 211, 77, 0.45);
            padding-left: 1.5rem;
            display: grid;
            gap: 2.5rem;
        }

        .timeline-item {
            position: relative;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #fcd34d;
            border: 2px solid #0a0a0a;
            left: -2.1rem;
            top: 0.35rem;
        }

        .timeline-item h3 {
            font-size: 1rem;
            margin-bottom: 0.35rem;
        }

        .timeline-item p {
            margin: 0.25rem 0;
            font-size: 0.85rem;
            color: #d1d5db;
        }

        .cta-card {
            background: rgba(30, 30, 30, 0.9);
            border: 2px solid rgba(255, 255, 255, 0.08);
            padding: 2rem;
            border-radius: 1rem;
            text-align: center;
        }

        .cta-card a {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.6rem 1.1rem;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.12);
            color: #fcd34d;
            font-size: 0.75rem;
            transition: background 0.2s ease;
        }

        .cta-card a:hover {
            background: rgba(255, 255, 255, 0.2);
            color: #ffffff;
        }
