@font-face {
            font-family: 'Midwinter';
            src: url('fonts/Midwinter.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }

        :root {
            --bg-dark: #0a0a12;
            --border-blue: #4a6b9a;
            --border-light: #6a8bba;
            --text-ice: #a8c8e8;
            --text-white: #e8f0f8;
            --accent-orange: #e87040;
            --accent-yellow: #d4a840;
            --tile-bg: #1a2030;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            background: var(--bg-dark);
            min-height: 100vh;
            font-family: 'Midwinter', 'IBM Plex Mono', monospace;
            color: var(--text-ice);
        }

        body::before {
            content: '';
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            pointer-events: none;
            background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.05) 2px, rgba(0,0,0,0.05) 4px);
            z-index: 1000;
        }

        .header {
            background: linear-gradient(180deg, #1a2a4a 0%, var(--bg-dark) 100%);
            padding: 1rem 2rem;
            border-bottom: 3px solid var(--border-blue);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header a {
            font-family: 'Midwinter', cursive;
            font-size: 0.9rem;
            color: var(--text-ice);
            text-decoration: none;
            letter-spacing: 0.1em;
        }

        .header a:hover { color: var(--accent-yellow); }

        .back-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .content {
            max-width: 900px;
            margin: 0 auto;
            padding: 3rem 2rem;
        }

        .hero-image {
            width: 100%;
            max-width: 700px;
            margin: 0 auto 3rem;
            display: block;
            border: 4px solid var(--border-blue);
            image-rendering: pixelated;
        }

        h1 {
            font-family: 'Midwinter', cursive;
            font-size: 2.25rem;
            color: var(--text-white);
            text-align: center;
            margin-bottom: 0.5rem;
            letter-spacing: 0.1em;
            text-shadow: 3px 3px 0 #000;
        }

        .subtitle {
            font-family: 'Midwinter', cursive;
            font-size: 0.75rem;
            color: var(--accent-yellow);
            text-align: center;
            margin-bottom: 3rem;
            letter-spacing: 0.15em;
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .info-box {
            background: var(--tile-bg);
            border: 2px solid var(--border-blue);
            padding: 1rem;
        }

        .info-label {
            font-family: 'Midwinter', cursive;
            font-size: 0.6rem;
            color: var(--text-ice);
            margin-bottom: 0.5rem;
            letter-spacing: 0.1em;
        }

        .info-value {
            font-family: 'Midwinter', sans-serif;
            font-size: 1.5rem;
            color: var(--text-white);
        }

        .section {
            margin-bottom: 3rem;
        }

        .section h2 {
            font-family: 'Midwinter', cursive;
            font-size: 1.05rem;
            color: var(--accent-yellow);
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--border-blue);
            letter-spacing: 0.1em;
        }

        .section p {
            font-family: 'Midwinter', sans-serif;
            line-height: 1.8;
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }

        .feature-list {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }

        .feature-list li {
            background: var(--tile-bg);
            border: 2px solid var(--border-blue);
            padding: 1rem;
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .feature-list img {
            width: 48px;
            height: 48px;
            image-rendering: pixelated;
        }

        .feature-text strong {
            font-family: 'Midwinter', sans-serif;
            display: block;
            color: var(--text-white);
            margin-bottom: 0.25rem;
            font-size: 1.3rem;
        }

        .feature-text span {
            font-family: 'Midwinter', sans-serif;
            font-size: 1.2rem;
            color: var(--text-ice);
        }

        .links-section {
            background: var(--tile-bg);
            border: 3px solid var(--border-blue);
            padding: 2rem;
            text-align: center;
        }

        .links-section h3 {
            font-family: 'Midwinter', cursive;
            font-size: 0.9rem;
            color: var(--text-white);
            margin-bottom: 1.5rem;
        }

        .links-section a {
            display: inline-block;
            margin: 0.5rem 1rem;
            padding: 0.75rem 1.5rem;
            background: var(--border-blue);
            color: var(--text-white);
            text-decoration: none;
            font-family: 'Midwinter', cursive;
            font-size: 0.7rem;
            letter-spacing: 0.1em;
            transition: all 0.2s;
        }

        .links-section a:hover {
            background: var(--accent-yellow);
            color: #000;
        }
    /* Mobile */
@media (max-width: 768px) { .content { padding: 1.5rem 1rem; } h1 { font-size: 0.7rem; } h2 { font-size: 0.5rem; } p, li { font-size: 0.8rem; line-height: 1.6; } .header { padding: 0.75rem 1rem; } }
@media (max-width: 480px) { h1 { font-size: 0.55rem; } }