        :root {
            --gold: #c4a46a;
            --bg: #0a0c10;
            --surface: #10141a;
            --border: rgba(232,228,217,0.08);
            --text: #e8e4d9;
            --muted: #8b93a0;
            --max: 860px;
        }
        * { 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.65; -webkit-font-smoothing: antialiased;
        }
        .page { max-width: var(--max); margin: 0 auto; padding: 64px 24px 80px; }
        .back-link {
            display: inline-flex; align-items: center; gap: 6px;
            font-family: 'DM Mono', monospace; font-size: 11px; color: var(--gold);
            text-decoration: none; letter-spacing: 0.06em; margin-bottom: 40px;
            transition: opacity 0.2s;
        }
        .back-link:hover { opacity: 0.7; }
        h1 {
            font-family: 'Playfair Display', Georgia, serif; font-size: 36px;
            font-weight: 400; letter-spacing: -0.02em; margin-bottom: 8px;
        }
        h1 em { font-style: italic; color: var(--gold); }
        .subtitle {
            font-size: 14px; color: var(--muted); margin-bottom: 48px;
            padding-bottom: 24px; border-bottom: 1px solid var(--border);
        }
        h2 {
            font-family: 'Playfair Display', Georgia, serif; font-size: 22px;
            font-weight: 400; color: var(--gold); margin-top: 48px; margin-bottom: 16px;
            letter-spacing: -0.01em;
        }
        h3 {
            font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600;
            color: var(--text); margin-top: 28px; margin-bottom: 8px;
        }
        p { font-size: 14px; color: var(--text); margin-bottom: 12px; }
        p.muted { color: var(--muted); font-size: 13px; }

        table {
            width: 100%; border-collapse: collapse; margin: 16px 0 24px;
            font-size: 13px;
        }
        th {
            text-align: left; padding: 8px 12px; font-family: 'DM Mono', monospace;
            font-size: 10px; font-weight: 500; letter-spacing: 0.08em; color: var(--muted);
            border-bottom: 1px solid var(--border); text-transform: uppercase;
        }
        td {
            padding: 8px 12px; border-bottom: 1px solid var(--border);
            vertical-align: top;
        }
        td:first-child { font-weight: 600; color: var(--text); white-space: nowrap; }
        td:nth-child(2) { color: var(--muted); font-size: 12px; }
        td:last-child { color: var(--gold); font-family: 'DM Mono', monospace; font-size: 11px; text-align: right; white-space: nowrap; }

        .disclaimer-box {
            background: var(--surface); border: 1px solid var(--border);
            padding: 20px 24px; margin-top: 48px; font-size: 12px;
            color: var(--muted); line-height: 1.7;
        }
        .disclaimer-box strong { color: var(--text); }

        .footer {
            margin-top: 64px; padding-top: 24px; border-top: 1px solid var(--border);
            font-size: 11px; color: var(--muted);
        }
        .footer a { color: var(--gold); text-decoration: none; }
    
