        :root {
            --bg-main: #0b0f19;
            --bg-card: #131a26;
            --primary: #10b981;
            --primary-glow: rgba(16, 185, 129, 0.15);
            --text-pure: #ffffff;
            --text-muted: #9ca3af;
            --text-dark: #6b7280;
            --border: #1f2937;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
            background-color: var(--bg-main);
            color: var(--text-pure);
            line-height: 1.6;
            letter-spacing: -0.01em;
            -webkit-font-smoothing: antialiased;
        }
        header {
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            background: rgba(11, 15, 25, 0.8);
            backdrop-filter: blur(12px);
            z-index: 100;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
        }
        .logo-wrap {
            display: flex;
            align-items: center;
            text-decoration: none;
            gap: 0.75rem;
        }
        .logo-img {
            width: 28px;
            height: 28px;
            object-fit: contain;
        }
        .logo-text {
            font-size: 1.1rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            color: var(--text-pure);
        }
        .nav-right {
            display: flex;
            align-items: center;
            gap: 2.5rem;
        }
        .nav-links a {
            text-decoration: none;
            color: var(--text-muted);
            margin-left: 2rem;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.2s;
        }
        .nav-links a:hover, .nav-links a.active {
            color: var(--primary);
        }
        .github-icon-link {
            color: var(--text-muted);
            transition: color 0.2s;
            display: flex;
            align-items: center;
        }
        .github-icon-link:hover {
            color: var(--text-pure);
        }

        .dl-hero-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 5rem 2rem 3rem;
            text-align: center;
        }
        .dl-hero-section h1 {
            font-size: 3rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
            background: linear-gradient(to bottom right, #ffffff 40%, #9ca3af);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .dl-hero-section p {
            font-size: 1.15rem;
            color: var(--text-muted);
            max-width: 640px;
            margin: 0 auto;
        }

        .download-media-preview {
            max-width: 1200px;
            margin: 1rem auto 4rem;
            padding: 0 2rem;
        }
        .dl-image-slot {
            width: 100%;
            aspect-ratio: 21 / 9;
            background-color: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }
        .dl-image-slot img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .matrix-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem 6rem;
        }
        .matrix-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }
        .matrix-card {
            background-color: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 2.5rem 1.5rem 2rem;
            display: flex;
            flex-direction: column;
            position: relative;
            transition: border-color 0.2s;
        }
        .matrix-card:hover {
            border-color: rgba(16, 185, 129, 0.3);
        }
        .card-icon-header {
            color: var(--primary);
            margin-bottom: 1.25rem;
            display: flex;
        }
        .matrix-card h2 {
            font-size: 1.35rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        .card-os-desc {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 2rem;
            line-height: 1.5;
            text-align: justify;
        }
        .dl-links-stack {
            margin-top: auto;
        }
        .dl-btn-standalone {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            background-color: rgba(16, 185, 129, 0.04);
            border: 1px solid rgba(16, 185, 129, 0.2);
            padding: 1rem 1rem;
            border-radius: 6px;
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.2s;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .dl-btn-standalone:hover {
            background-color: var(--primary);
            color: #000000;
            border-color: var(--primary);
            box-shadow: 0 0 15px var(--primary-glow);
        }

        .infra-status-box {
            margin-top: 4rem;
            background-color: rgba(19, 26, 38, 0.2);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 2.5rem;
        }
        .infra-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        .infra-header h3 {
            font-size: 1.2rem;
            font-weight: 700;
        }
        .infra-header svg {
            color: var(--primary);
        }
        .infra-table-wrapper {
            overflow-x: auto;
        }
        .infra-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.88rem;
            text-align: left;
        }
        .infra-table th, .infra-table td {
            padding: 1rem;
            border-bottom: 1px solid var(--border);
        }
        .infra-table th {
            color: var(--text-dark);
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 0.05em;
        }
        .status-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--primary);
            background: rgba(16, 185, 129, 0.08);
            padding: 0.2rem 0.6rem;
            border-radius: 12px;
            border: 1px solid rgba(16, 185, 129, 0.15);
        }
        .status-pill::before {
            content: "";
            width: 6px;
            height: 6px;
            background-color: var(--primary);
            border-radius: 50%;
        }
        .infra-table td code {
            font-family: monospace;
            color: var(--text-muted);
        }

        footer {
            border-top: 1px solid var(--border);
            background-color: #070a10;
            color: var(--text-dark);
            padding: 5rem 2rem 3rem;
            font-size: 0.9rem;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr repeat(3, 1fr);
            gap: 4rem;
            padding-bottom: 4rem;
        }
        .footer-brand h4 {
            color: var(--text-pure);
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }
        .footer-brand p {
            max-width: 260px;
            line-height: 1.6;
        }
        .footer-links h5 {
            color: var(--text-muted);
            margin-bottom: 1.2rem;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links ul li {
            margin-bottom: 0.75rem;
        }
        .footer-links a {
            color: var(--text-dark);
            text-decoration: none;
            transition: color 0.2s;
        }
        .footer-links a:hover {
            color: var(--text-pure);
        }
        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.02);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        @media (max-width: 1024px) {
            .matrix-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
        }
        @media (max-width: 768px) {
            .nav-container {
                padding: 1rem;
            }
            .nav-links {
                display: none;
            }
            .matrix-grid {
                grid-template-columns: 1fr;
            }
            .dl-hero-section h1 {
                font-size: 2.2rem;
            }
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 2.5rem;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }
    