:root {
            --bg: #050505;
            --surface: #0a0a0a;
            --nav-h: 72px;
            --mobile-cta-h: 58px;
            --gold: #D4AF37;
            --gold-dim: #8a702a;
            --gold-glow: rgba(212, 175, 55, 0.25);
            --bronze: #cd7f32;
            --bronze-glow: rgba(205, 127, 50, 0.25);
            --text: #ffffff;
            --text-dim: #d0d0d0;
            --ui-caption: #d8d8d8;
            --border: #222;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }

        body {
            background-color: var(--bg);
            background-image: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
            color: var(--text);
            font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
            min-height: 100vh;
            line-height: 1.6;
            display: flex;
            flex-direction: column;
        }

.container {
            max-width: 900px;
            margin: 60px auto;
            padding: 0 20px 80px;
            flex-grow: 1;
            width: 100%;
        }

        header {
            text-align: center;
            border-bottom: 1px solid var(--border);
            padding-bottom: 30px;
            margin-bottom: 50px;
        }

        h1 {
            font-family: 'Oswald', sans-serif;
            font-size: 4rem;
            text-transform: uppercase;
            line-height: 1;
            margin-bottom: 10px;
        }

        .subtitle {
            font-family: 'Roboto Mono', monospace;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 0.9rem;
            font-weight: 700;
        }

        section {
            margin-bottom: 50px;
        }

        h2 {
            font-family: 'Oswald', sans-serif;
            font-size: 2rem;
            text-transform: uppercase;
            color: #fff;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        h2::before {
            content: '';
            display: block;
            width: 4px;
            height: 24px;
            background: var(--gold);
        }

        .rule-card {
            background: var(--surface);
            border: 1px solid var(--border);
            padding: 30px;
            border-radius: 4px;
        }

        ul {
            list-style: none;
        }

        li {
            margin-bottom: 20px;
            padding-left: 30px;
            position: relative;
            font-size: 1.1rem;
            color: #ccc;
        }
        li strong {
            color: #fff;
            text-transform: uppercase;
            font-family: 'Oswald', sans-serif;
            letter-spacing: 0.5px;
            display: block;
            margin-bottom: 4px;
        }
        li::before {
            content: '✓';
            color: var(--gold);
            position: absolute;
            left: 0;
            font-weight: 700;
        }

        .entry-callout {
            background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(10,10,10,0.95) 100%);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 8px;
            padding: 28px 32px;
            margin-bottom: 48px;
        }

        .entry-callout h2 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.5rem;
            text-transform: uppercase;
            color: #fff;
            margin-bottom: 14px;
        }

        .entry-callout h2::before { display: none; }

        .entry-callout p {
            color: var(--text-dim);
            font-size: 1.1rem;
            margin-bottom: 12px;
            line-height: 1.65;
        }

        .entry-callout p:last-child { margin-bottom: 0; }

        .entry-callout strong { color: #fff; }

        .verified-divider {
            font-family: 'Roboto Mono', monospace;
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--gold);
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border);
        }

        .note-box {
            background: rgba(212, 175, 55, 0.05);
            border: 1px solid var(--gold-dim);
            padding: 20px;
            margin-top: 20px;
            font-size: 0.95rem;
            color: var(--gold);
            line-height: 1.6;
        }

        footer {
            margin-top: auto;
            text-align: center;
            padding: 40px 20px 60px;
            border-top: 1px solid var(--border);
            background: #0a0a0a;
        }

        .footer-logo {
            display: block;
            height: 72px;
            width: auto;
            max-width: 280px;
            margin: 0 auto 20px;
            object-fit: contain;
            }

        .footer-copy {
            color: #b0b0b0;
            font-family: 'Roboto Mono', monospace;
            font-size: 0.8rem;
        }

        .footer-links {
            margin-top: 12px;
            font-size: 0.85rem;
        }

        .footer-links a {
            color: #b5b5b5;
            text-decoration: none;
            margin: 0 10px;
        }

        .footer-links a:hover { color: var(--gold); }
