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

        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: #0a0a0f;
            color: #e0e0e0;
            min-height: 100vh;
            padding: 2rem;
        }

        .container {
            max-width: 700px;
            margin: 0 auto;
        }

        h1 {
            font-size: 2rem;
            font-weight: 200;
            letter-spacing: 0.1em;
            margin-bottom: 0.5rem;
            color: #c8d6e5;
        }

        .version {
            font-size: 0.85rem;
            color: #555;
            margin-bottom: 2rem;
        }

        .section {
            margin-bottom: 2.5rem;
        }

        .section h2 {
            font-size: 0.75rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: #666;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .downloads {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 0.75rem;
        }

        .dl-btn {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 1.25rem;
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 8px;
            text-decoration: none;
            color: #c8d6e5;
            background: rgba(255,255,255,0.02);
            transition: all 0.3s ease;
        }

        .dl-btn:hover {
            border-color: rgba(200,214,229,0.15);
            background: rgba(255,255,255,0.04);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.2);
        }

        .dl-icon {
            font-size: 1.5rem;
            width: 2rem;
            text-align: center;
        }

        .dl-info {
            display: flex;
            flex-direction: column;
        }

        .dl-platform {
            font-size: 0.9rem;
            font-weight: 400;
        }

        .dl-format {
            font-size: 0.7rem;
            color: #555;
            margin-top: 2px;
        }

        .server-info {
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 8px;
            padding: 1.25rem;
        }

        .info-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.5rem 0;
        }

        .info-row:not(:last-child) {
            border-bottom: 1px solid rgba(255,255,255,0.03);
        }

        .info-label {
            font-size: 0.75rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #666;
        }

        .info-value {
            font-family: 'SF Mono', 'Fira Code', monospace;
            font-size: 0.85rem;
            color: #8fa8c8;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
            transition: background 0.2s;
        }

        .info-value:hover {
            background: rgba(255,255,255,0.05);
        }

        .info-value::after {
            content: '⧉';
            margin-left: 0.5rem;
            opacity: 0.3;
            font-size: 0.8rem;
        }

        .note {
            margin-top: 2rem;
            padding: 1rem;
            border-left: 2px solid rgba(200,214,229,0.1);
            font-size: 0.8rem;
            color: #555;
            line-height: 1.6;
        }

        .note code {
            background: rgba(255,255,255,0.05);
            padding: 0.15rem 0.4rem;
            border-radius: 3px;
            font-size: 0.75rem;
            color: #8fa8c8;
        }

        .toast {
            position: fixed;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            background: #1a1a2e;
            border: 1px solid rgba(200,214,229,0.15);
            color: #c8d6e5;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            font-size: 0.8rem;
            opacity: 0;
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .toast.show {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }

        a.back {
            display: inline-block;
            margin-bottom: 2rem;
            font-size: 0.8rem;
            color: #555;
            text-decoration: none;
            transition: color 0.2s;
        }

        a.back:hover { color: #888; }
