:root {
            --bg-primary: #0a0e1a;
            --bg-secondary: #111827;
            --bg-card: #1a2332;
            --bg-table: #0f1923;
            --accent: #f59e0b;
            --accent-hover: #d97706;
            --text-primary: #f3f4f6;
            --text-secondary: #9ca3af;
            --text-muted: #6b7280;
            --border: #2d3748;
            --success: #10b981;
            --danger: #ef4444;
            --info: #3b82f6;
        }

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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.7;
            font-size: 16px;
        }

        header {
            background: linear-gradient(135deg, #1a2332 0%, #0f1923 100%);
            border-bottom: 1px solid var(--border);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }

        .header-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            font-size: 24px;
            font-weight: 800;
            color: var(--accent);
            text-decoration: none;
            letter-spacing: -0.5px;
        }

        .header-meta {
            font-size: 13px;
            color: var(--text-muted);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        main {
            padding: 40px 0;
        }

        article {
            max-width: 900px;
            margin: 0 auto;
        }

        nav.quick-nav {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 24px 30px;
            margin-bottom: 40px;
        }

        nav.quick-nav h3 {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--accent);
            margin-bottom: 16px;
        }

        nav.quick-nav ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 8px;
        }

        nav.quick-nav a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 14px;
            padding: 8px 12px;
            border-radius: 6px;
            transition: all 0.2s;
            display: block;
        }

        nav.quick-nav a:hover {
            background: var(--bg-secondary);
            color: var(--accent);
        }

        .author-block {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 24px 30px;
            margin-bottom: 40px;
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .author-avatar {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent), var(--accent-hover));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
            flex-shrink: 0;
        }

        .author-info h4 {
            font-size: 16px;
            margin-bottom: 4px;
        }

        .author-info .role {
            color: var(--accent);
            font-size: 13px;
            margin-bottom: 8px;
        }

        .author-info .methodology {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.5;
        }

        .date-badge {
            font-size: 12px;
            background: var(--bg-secondary);
            padding: 4px 10px;
            border-radius: 4px;
            color: var(--text-muted);
            margin-top: 8px;
            display: inline-block;
        }

        h1 {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 16px;
            line-height: 1.3;
            background: linear-gradient(135deg, var(--text-primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .subtitle {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 32px;
            line-height: 1.6;
        }

        h2 {
            font-size: 24px;
            font-weight: 700;
            margin-top: 48px;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--border);
            color: var(--text-primary);
        }

        h3 {
            font-size: 18px;
            font-weight: 600;
            margin-top: 28px;
            margin-bottom: 12px;
            color: var(--text-primary);
        }

        p {
            margin-bottom: 16px;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 24px 0;
            border: 1px solid var(--border);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            background: var(--bg-table);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border);
        }

        table thead {
            background: rgba(245, 158, 11, 0.1);
        }

        table th {
            padding: 14px 16px;
            text-align: left;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--accent);
            border-bottom: 2px solid var(--border);
        }

        table td {
            padding: 12px 16px;
            font-size: 14px;
            border-bottom: 1px solid var(--border);
            color: var(--text-secondary);
        }

        table tr:last-child td {
            border-bottom: none;
        }

        table tr:hover td {
            background: rgba(245, 158, 11, 0.03);
        }

        .metric-card {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }

        .metric {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 20px;
            text-align: center;
        }

        .metric .value {
            font-size: 28px;
            font-weight: 800;
            color: var(--accent);
            margin-bottom: 4px;
        }

        .metric .label {
            font-size: 12px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .transaction-log {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 24px;
            margin: 24px 0;
            font-family: 'JetBrains Mono', 'Fira Code', monospace;
            font-size: 13px;
            overflow-x: auto;
        }

        .transaction-log .entry {
            padding: 10px 0;
            border-bottom: 1px solid var(--border);
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }

        .transaction-log .entry:last-child {
            border-bottom: none;
        }

        .transaction-log .timestamp {
            color: var(--text-muted);
            min-width: 140px;
        }

        .transaction-log .amount {
            color: var(--success);
            font-weight: 600;
            min-width: 100px;
        }

        .transaction-log .status {
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 600;
        }

        .transaction-log .status.completed {
            background: rgba(16, 185, 129, 0.15);
            color: var(--success);
        }

        .transaction-log .method {
            color: var(--info);
            min-width: 80px;
        }

        .transaction-log .comment {
            color: var(--text-muted);
            font-style: italic;
            width: 100%;
            margin-top: 4px;
            font-size: 12px;
        }

        .game-category {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 28px;
            margin: 24px 0;
        }

        .game-category h3 {
            margin-top: 0;
            color: var(--accent);
        }

        .game-category ul {
            list-style: none;
            padding: 0;
        }

        .game-category ul li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(45, 55, 72, 0.5);
            color: var(--text-secondary);
            font-size: 14px;
        }

        .game-category ul li:last-child {
            border-bottom: none;
        }

        .game-category ul li::before {
            content: "▸ ";
            color: var(--accent);
        }

        .verdict-box {
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.02));
            border: 2px solid var(--accent);
            border-radius: 12px;
            padding: 28px;
            margin: 32px 0;
        }

        .verdict-box h3 {
            color: var(--accent);
            margin-top: 0;
        }

        .pros-cons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin: 20px 0;
        }

        .pros-cons .pros h4, .pros-cons .cons h4 {
            font-size: 14px;
            margin-bottom: 10px;
        }

        .pros-cons .pros h4 {
            color: var(--success);
        }

        .pros-cons .cons h4 {
            color: var(--danger);
        }

        .pros-cons ul {
            list-style: none;
            padding: 0;
        }

        .pros-cons ul li {
            font-size: 14px;
            color: var(--text-secondary);
            padding: 4px 0;
        }

        .faq-section {
            margin: 48px 0;
        }

        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 10px;
            margin-bottom: 12px;
            overflow: hidden;
        }

        .faq-item summary {
            padding: 18px 24px;
            cursor: pointer;
            font-weight: 600;
            font-size: 15px;
            color: var(--text-primary);
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary::after {
            content: "+";
            font-size: 20px;
            color: var(--accent);
            font-weight: 300;
        }

        .faq-item[open] summary::after {
            content: "-";
        }

        .faq-item .answer {
            padding: 0 24px 18px;
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.7;
        }

        footer {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border);
            padding: 40px 0;
            text-align: center;
        }

        footer p {
            font-size: 13px;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto 8px;
        }

        ul.content-list {
            list-style: none;
            padding: 0;
            margin: 16px 0;
        }

        ul.content-list li {
            padding: 6px 0;
            color: var(--text-secondary);
            font-size: 15px;
        }

        ul.content-list li::before {
            content: "● ";
            color: var(--accent);
            font-size: 8px;
            vertical-align: middle;
        }

        .highlight {
            color: var(--accent);
            font-weight: 600;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 24px;
            }

            h2 {
                font-size: 20px;
            }

            nav.quick-nav ul {
                grid-template-columns: 1fr;
            }

            .author-block {
                flex-direction: column;
            }

            .pros-cons {
                grid-template-columns: 1fr;
            }

            .metric-card {
                grid-template-columns: 1fr 1fr;
            }

            table {
                font-size: 12px;
            }

            table th, table td {
                padding: 8px 10px;
            }
        }