        :root {
            --bg: #0a0a0f;
            --bg-card: #111118;
            --text: #ffffff;
            --text-muted: #888;
            --cyan: #00f0ff;
            --magenta: #ff00ff;
            --border: rgba(255,255,255,0.1);
        }
        
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body {
            font-family: 'DM Sans', system-ui, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            font-size: 16px;
        }
        
        header {
            padding: 1.5rem 2rem;
            border-bottom: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            font-size: 1.25rem;
            color: var(--text);
            text-decoration: none;
        }
        
        .logo-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--cyan), var(--magenta));
        }
        
        .back-link {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.2s;
        }
        
        .back-link:hover { color: var(--cyan); }
        
        main {
            max-width: 800px;
            margin: 0 auto;
            padding: 3rem 2rem 5rem;
        }
        
        h1 {
            font-family: 'Syne', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
            background: linear-gradient(135deg, var(--cyan), var(--magenta));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        h2 {
            font-family: 'Syne', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            margin: 2.5rem 0 1rem;
            color: var(--text);
        }
        
        h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 1.5rem 0 0.75rem;
            color: var(--text);
        }
        
        p, li {
            color: var(--text-muted);
            margin-bottom: 1rem;
        }
        
        ul, ol {
            padding-left: 1.5rem;
            margin-bottom: 1rem;
        }
        
        li { margin-bottom: 0.5rem; }
        
        strong { color: var(--text); font-weight: 600; }
        
        a { color: var(--cyan); text-decoration: none; }
        a:hover { text-decoration: underline; }
        
        .info-block {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 1.5rem;
            margin: 1.5rem 0;
        }
        
        .info-block p { margin-bottom: 0.5rem; }
        .info-block p:last-child { margin-bottom: 0; }
        
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.9rem;
        }
        
        th, td {
            padding: 0.75rem;
            text-align: left;
            border: 1px solid var(--border);
        }
        
        th {
            background: var(--bg-card);
            color: var(--text);
            font-weight: 600;
        }
        
        td { color: var(--text-muted); }
        
        .last-updated {
            font-size: 0.875rem;
            color: var(--text-muted);
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border);
        }
        
        footer {
            text-align: center;
            padding: 2rem;
            color: var(--text-muted);
            font-size: 0.875rem;
            border-top: 1px solid var(--border);
        }
        
        footer a { color: var(--text-muted); }

        /* Footer Credit */
        .footer-credit {
            padding: 0.5rem 0;
            text-align: center;
            background-color: var(--bg);
        }

        .footer-credit p {
            margin: 0;
            font-size: 0.625rem;
            font-weight: 300;
        }

        .footer-credit a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-credit a:hover {
            color: var(--cyan);
        }

        :root {
            --bg: #0a0a0f;
            --bg-card: #111118;
            --text: #ffffff;
            --text-muted: #888;
            --cyan: #00f0ff;
            --magenta: #ff00ff;
            --border: rgba(255,255,255,0.1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'DM Sans', system-ui, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            font-size: 16px;
        }
        
        header {
            padding: 1.5rem 2rem;
            border-bottom: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            font-size: 1.25rem;
            color: var(--text);
            text-decoration: none;
        }
        
        .logo-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--cyan), var(--magenta));
        }
        
        .back-link {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.2s;
        }
        
        .back-link:hover {
            color: var(--cyan);
        }
        
        main {
            max-width: 800px;
            margin: 0 auto;
            padding: 3rem 2rem 5rem;
        }
        
        h1 {
            font-family: 'Syne', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
            background: linear-gradient(135deg, var(--cyan), var(--magenta));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        h2 {
            font-family: 'Syne', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            margin: 2.5rem 0 1rem;
            color: var(--text);
        }
        
        p {
            color: var(--text-muted);
            margin-bottom: 1rem;
        }
        
        strong {
            color: var(--text);
            font-weight: 600;
        }
        
        a {
            color: var(--cyan);
            text-decoration: none;
        }
        
        a:hover {
            text-decoration: underline;
        }
        
        .info-block {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 1.5rem;
            margin: 1.5rem 0;
        }
        
        .info-block p {
            margin-bottom: 0.5rem;
        }
        
        .info-block p:last-child {
            margin-bottom: 0;
        }
        
        .last-updated {
            font-size: 0.875rem;
            color: var(--text-muted);
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border);
        }
        
        footer {
            text-align: center;
            padding: 2rem;
            color: var(--text-muted);
            font-size: 0.875rem;
            border-top: 1px solid var(--border);
        }
        
        footer a {
            color: var(--text-muted);
        }

        /* Footer Credit */
        .footer-credit {
            padding: 0.5rem 0;
            text-align: center;
            background-color: var(--bg);
        }

        .footer-credit p {
            margin: 0;
            font-size: 0.625rem;
            font-weight: 300;
        }

        .footer-credit a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-credit a:hover {
            color: var(--cyan);
        }