:root {
            --brand-primary: #2828DC;
            --brand-primary-hover: #4B4BE2;
            --brand-secondary: #2CC92C;
            --brand-secondary-hover: #5ACE5A;
            --brand-accent: #EE2B93;
            --bg-main: #161519;
            --bg-surface: #201F23;
            --bg-elevated: #2C2B31;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --text-primary: #F4F4F5;
            --text-secondary: #BDBBC4;
            --text-muted: #787486;
            --text-brand-contrast: #0A0A0A;
            --text-link: #4242E0;
            --text-link-hover: #E55DA5;
            --semantic-success: #2BBF62;
            --semantic-error: #E42F3B;
            --semantic-warning: #F3B020;
            --semantic-info: #2C7AE8;
            --border-default: #2A282E;
            --border-strong: #56535F;
            --border-brand: #2020C5;
            --font-headings: 'Outfit', sans-serif;
            --font-body: 'Noto Sans', sans-serif;
            --font-mono: 'Source Code Pro', monospace;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { 
            background-color: var(--bg-main); 
            color: var(--text-primary); 
            font-family: var(--font-body); 
            font-size: 16px; 
            line-height: 1.7; 
            overflow-x: hidden;
        }
        h1, h2, h3 { 
            font-family: var(--font-headings); 
            line-height: 1.1; 
            letter-spacing: -0.01em; 
            font-weight: 700;
        }
        h1 { font-size: 3.6rem; margin-bottom: 1.5rem; }
        h2 { font-size: 2.9rem; margin-bottom: 2rem; }
        h3 { font-size: 2.2rem; margin-bottom: 1rem; }
        a { color: var(--text-link); text-decoration: none; transition: color 0.2s; }
        a:hover { color: var(--text-link-hover); }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        header { 
            background-color: var(--bg-surface); 
            padding: 15px 0; 
            position: sticky; 
            top: 0; 
            z-index: 1000; 
            border-bottom: 1px solid var(--border-default);
        }
        header .container { display: flex; justify-content: space-between; align-items: center; }
        .logo-link { display: flex; align-items: center; gap: 10px; }
        .logo-link img { width: 25px; height: 25px; }
        .logo-link strong { font-size: 16px; font-weight: 400; }
        .header-btns { display: flex; gap: 12px; }
        button { 
            padding: 10px 20px; 
            border: none; 
            border-radius: 4px; 
            cursor: pointer; 
            font-family: var(--font-body); 
            font-weight: 600; 
            transition: background 0.3s; 
        }
        .btn-primary { background-color: var(--brand-primary); color: #fff; }
        .btn-primary:hover { background-color: var(--brand-primary-hover); }
        .btn-secondary { background-color: var(--brand-secondary); color: var(--text-brand-contrast); }
        .btn-secondary:hover { background-color: var(--brand-secondary-hover); }

        section { 
            padding: 80px 0; 
            content-visibility: auto; 
            contain-intrinsic-size: 1px 1000px; 
        }
        .bg-alt { background-color: var(--bg-surface); }

        .hero { position: relative; text-align: left; }
        .hero-banner { 
            position: relative; 
            display: block; 
            width: 100%; 
            aspect-ratio: 2/1; 
            overflow: hidden; 
            margin-bottom: 40px;
        }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .hero-overlay { 
            position: absolute; 
            inset: 0; 
            background: var(--bg-overlay); 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            text-align: center;
        }
        .hero-overlay span { 
            font-family: var(--font-headings); 
            font-size: 2rem; 
            color: #fff; 
            border: 2px solid #fff; 
            padding: 15px 30px; 
            font-weight: 700;
        }
        .editorial-meta { 
            font-size: 0.8rem; 
            color: var(--text-muted); 
            margin-bottom: 20px; 
            display: block; 
        }

        .quick-facts table { 
            width: 100%; 
            border-collapse: collapse; 
            background: var(--bg-elevated); 
            border: 1px solid var(--border-default);
        }
        .quick-facts th, .quick-facts td { 
            padding: 15px; 
            text-align: left; 
            border: 1px solid var(--border-default); 
        }
        .quick-facts th { background: var(--bg-surface); color: var(--text-secondary); width: 40%; }

        .toc { 
            background: var(--bg-elevated); 
            padding: 25px; 
            border-radius: 0; 
            margin-bottom: 40px; 
        }
        .toc ul { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 10px; }
        .toc a { color: var(--text-secondary); font-size: 0.9rem; }

        .cat-grid { 
            display: grid; 
            grid-template-columns: repeat(4, 1fr); 
            gap: 20px; 
        }
        .cat-tile { 
            background: var(--bg-surface); 
            padding: 30px; 
            text-align: center; 
            border: 1px solid var(--border-default); 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            gap: 15px; 
            transition: transform 0.2s;
        }
        .cat-tile:hover { transform: translateY(-5px); border-color: var(--brand-primary); }
        .cat-tile i { font-size: 2.5rem; color: var(--brand-primary); }
        .cat-tile h3 { font-size: 1.3rem; margin: 0; }
        .cat-tile p { font-size: 0.8rem; color: var(--text-secondary); }

        .usp-grid { 
            display: grid; 
            grid-template-columns: repeat(4, 1fr); 
            gap: 20px; 
        }
        .usp-card { 
            background: var(--bg-surface); 
            padding: 20px; 
            border-left: 4px solid var(--brand-primary); 
            border-top: 0; border-right: 0; border-bottom: 0;
        }
        .usp-card i { font-size: 1.5rem; color: var(--brand-secondary); margin-bottom: 10px; display: block; }
        .usp-card h3 { font-size: 1.1rem; margin-bottom: 5px; }
        .usp-card p { font-size: 0.8rem; color: var(--text-secondary); }

        .game-grid { 
            display: grid; 
            grid-template-columns: repeat(4, 1fr); 
            gap: 20px; 
        }
        .game-card { 
            background: var(--bg-surface); 
            border: 1px solid var(--border-default); 
            overflow: hidden; 
            text-decoration: none; 
            color: inherit;
        }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { padding: 15px; font-size: 1rem; text-align: center; margin: 0; }

        .promo-grid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 20px; 
        }
        .promo-card { 
            background: var(--bg-elevated); 
            padding: 30px; 
            border-left: 4px solid var(--brand-accent); 
            display: flex; 
            flex-direction: column; 
            justify-content: space-between; 
        }
        .promo-card h3 { color: var(--brand-accent); }

        .payment-grid { 
            display: grid; 
            grid-template-columns: repeat(4, 1fr); 
            gap: 20px; 
        }
        .payment-card { 
            background: var(--bg-surface); 
            padding: 20px; 
            border: 1px solid var(--border-default); 
            text-align: center; 
        }
        .payment-card i { font-size: 2rem; margin-bottom: 10px; display: block; }

        .steps-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
            gap: 30px; 
        }
        .step-item { text-align: center; }
        .step-num { 
            width: 50px; height: 50px; background: var(--brand-primary); 
            border-radius: 50%; display: flex; align-items: center; 
            justify-content: center; margin: 0 auto 20px; font-weight: 700; 
        }

        .provider-grid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 20px; 
        }
        .provider-card { 
            background: var(--bg-elevated); 
            padding: 20px; 
            border: 1px solid var(--border-default); 
        }

        .guide-grid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 30px; 
        }
        .guide-item { background: var(--bg-surface); padding: 25px; border-left: 4px solid var(--brand-secondary); }

        .vip-grid { 
            display: grid; 
            grid-template-columns: repeat(4, 1fr); 
            gap: 15px; 
        }
        .vip-card { 
            background: var(--bg-elevated); 
            padding: 20px; 
            text-align: center; 
            border: 1px solid var(--border-default); 
        }

        .faq-item { margin-bottom: 20px; background: var(--bg-surface); padding: 20px; border: 1px solid var(--border-default); }
        .faq-item summary { font-weight: 600; font-size: 1.2rem; cursor: pointer; margin-bottom: 10px; list-style: none; }

        .community-grid { 
            display: grid; 
            grid-template-columns: repeat(4, 1fr); 
            gap: 20px; 
        }
        .community-card { 
            background: var(--bg-elevated); 
            padding: 20px; 
            border-left: 4px solid var(--brand-primary); 
        }
        .user-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .user-meta i { font-size: 1.5rem; color: var(--text-muted); }
        .stars { color: var(--semantic-warning); margin-bottom: 10px; }

        .wins-table { width: 100%; border-collapse: collapse; }
        .wins-table tr { border-bottom: 1px solid var(--border-default); }
        .wins-table td { padding: 12px; font-size: 0.9rem; }

        .topic-cluster { 
            display: flex; 
            flex-wrap: wrap; 
            gap: 10px; 
            margin-top: 20px; 
        }
        .topic-chip { 
            background: var(--bg-surface); 
            padding: 8px 15px; 
            border: 1px solid var(--border-default); 
            font-size: 0.8rem; 
            border-radius: 20px; 
        }

        .navigator { 
            position: fixed; 
            bottom: 0; 
            left: 0; 
            right: 0; 
            background: var(--bg-surface); 
            display: flex; 
            justify-content: space-around; 
            padding: 10px 0; 
            border-top: 1px solid var(--border-default); 
            z-index: 2000;
        }
        .navigator a { 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            font-size: 0.7rem; 
            color: var(--text-secondary); 
            text-decoration: none;
        }
        .navigator i { font-size: 1.2rem; margin-bottom: 5px; }

        footer { background: var(--bg-surface); padding: 60px 0 100px; border-top: 1px solid var(--border-default); }
        .footer-grid { 
            display: grid; 
            grid-template-columns: repeat(3, 1fr); 
            gap: 40px; 
            margin-bottom: 40px; 
        }
        .footer-col ul { list-style: none; }
        .footer-col a { color: var(--text-secondary); font-size: 0.9rem; display: block; margin-bottom: 8px; }
        .footer-bottom { 
            text-align: center; 
            font-size: 0.8rem; 
            color: var(--text-muted); 
            border-top: 1px solid var(--border-default); 
            padding-top: 20px; 
        }

        @media (max-width: 992px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2.1rem; }
            .cat-grid, .usp-grid, .game-grid, .payment-grid, .vip-grid, .community-grid { grid-template-columns: repeat(2, 1fr); }
            .promo-grid, .guide-grid, .provider-grid { grid-template-columns: 1fr; }
        }