@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;
            --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;
            text-align: center;
        }
        h1 {
            font-family: 'Midwinter', cursive;
            font-size: 2rem;
            color: var(--text-white);
            margin-bottom: 2rem;
        }
        .coming-soon {
            font-family: 'Midwinter', cursive;
            font-size: 1rem;
            color: var(--accent-yellow);
            padding: 2rem;
            border: 3px solid var(--border-blue);
            background: var(--tile-bg);
        }
        .icon {
            width: 120px;
            height: 120px;
            margin: 2rem auto;
            image-rendering: pixelated;
        }
        .videos-wrapper {
            display: flex;
            gap: 2rem;
            margin: 3rem 0;
            justify-content: center;
        }
        .video-section {
            flex: 1;
            max-width: 550px;
        }
        .video-section h2 {
            font-family: 'Midwinter', cursive;
            font-size: 1rem;
            color: var(--accent-yellow);
            margin-bottom: 1.5rem;
        }
        .video-container {
            border: 3px solid var(--border-blue);
            background: var(--tile-bg);
            padding: 1rem;
        }
        .terrain-video {
            width: 100%;
            border: 2px solid var(--border-blue);
        }
        .section-header {
            margin: 3rem 0 1.5rem 0;
        }
        .section-header h2 {
            font-family: 'Midwinter', cursive;
            font-size: 1.4rem;
            color: var(--text-white);
            margin-bottom: 0.5rem;
        }
        .section-subtitle {
            font-family: 'Midwinter', sans-serif;
            font-size: 1.2rem;
            color: var(--text-ice);
            opacity: 0.8;
        }
        @media (max-width: 900px) {
            .videos-wrapper {
                flex-direction: column;
                align-items: center;
            }
        }
        /* Map Viewer */
        .map-section {
            margin: 3rem 0;
        }
        .map-section h2 {
            font-family: 'Midwinter', cursive;
            font-size: 1.2rem;
            color: var(--accent-yellow);
            margin-bottom: 1.5rem;
        }
        .map-container {
            border: 3px solid var(--border-blue);
            background: var(--tile-bg);
            padding: 0;
            position: relative;
        }
        #map-viewer {
            width: 100%;
            height: 600px;
            background: #0d0d1a;
        }
        .map-controls {
            display: flex;
            justify-content: center;
            gap: 1rem;
            padding: 1rem;
            background: rgba(26, 32, 48, 0.9);
            border-top: 2px solid var(--border-blue);
        }
        .map-btn {
            font-family: 'Midwinter', cursive;
            font-size: 0.8rem;
            padding: 0.5rem 1rem;
            background: var(--tile-bg);
            border: 2px solid var(--border-blue);
            color: var(--text-ice);
            cursor: pointer;
            transition: all 0.2s;
        }
        .map-btn:hover {
            background: var(--border-blue);
            color: var(--text-white);
        }
        .map-hint {
            font-size: 0.7rem;
            color: var(--text-ice);
            opacity: 0.7;
            margin-top: 1rem;
        }

        /* Style OpenSeadragon navigator */
        .navigator {
            border: 2px solid var(--border-blue) !important;
            background: var(--tile-bg) !important;
        }

    /* 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; } #map-viewer { height: 400px; } .map-btn { font-size: 0.4rem; padding: 0.4rem 0.6rem; } }
@media (max-width: 480px) { h1 { font-size: 0.55rem; } #map-viewer { height: 300px; } }