@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;
            --text-ice: #a8c8e8;
            --text-white: #e8f0f8;
            --accent-yellow: #d4a840;
            --accent-orange: #e87040;
            --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);
        }
        .header {
            background: linear-gradient(180deg, #1a2a4a 0%, var(--bg-dark) 100%);
            padding: 1rem 2rem;
            border-bottom: 3px solid var(--border-blue);
        }
        .header a {
            font-family: 'Midwinter', cursive;
            font-size: 0.9rem;
            color: var(--text-ice);
            text-decoration: none;
        }
        .header a:hover { color: var(--accent-yellow); }
        .content {
            max-width: 900px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }
        h1 {
            font-family: 'Midwinter', cursive;
            font-size: 1.8rem;
            color: var(--text-white);
            text-align: center;
            margin-bottom: 0.5rem;
        }
        .subtitle {
            font-family: 'Midwinter', cursive;
            font-size: 0.8rem;
            color: var(--accent-yellow);
            text-align: center;
            margin-bottom: 3rem;
        }
        .icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 2rem;
            display: block;
            image-rendering: pixelated;
        }
        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-bottom: 3rem;
        }
        .tech-card {
            background: var(--tile-bg);
            border: 3px solid var(--border-blue);
            padding: 1.5rem;
            text-align: center;
        }
        .tech-card h3 {
            font-family: 'Midwinter', cursive;
            font-size: 0.9rem;
            color: var(--accent-yellow);
            margin-bottom: 0.75rem;
        }
        .tech-card p {
            font-family: 'Midwinter', sans-serif;
            font-size: 1rem;
            line-height: 1.5;
        }
        .section {
            background: var(--tile-bg);
            border: 3px solid var(--border-blue);
            padding: 2rem;
            margin-bottom: 2rem;
        }
        .section h2 {
            font-family: 'Midwinter', cursive;
            font-size: 1rem;
            color: var(--accent-yellow);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--border-blue);
        }
        .section p {
            font-family: 'Midwinter', sans-serif;
            line-height: 1.7;
            margin-bottom: 1rem;
            font-size: 1rem;
        }
        .section ul {
            list-style: none;
            margin-left: 1rem;
        }
        .section li {
            padding: 0.4rem 0;
            position: relative;
            padding-left: 1rem;
        }
        .section li::before {
            content: '>';
            position: absolute;
            left: 0;
            color: var(--accent-orange);
        }
        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            background: var(--accent-yellow);
            color: #000;
            text-decoration: none;
            font-family: 'Midwinter', cursive;
            font-size: 0.5rem;
            margin-top: 1rem;
            margin-right: 1rem;
            transition: all 0.2s;
        }
        .btn:hover {
            background: var(--text-white);
        }
    /* 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; } }