:root {
            --brand-primary: #FFD700;
            --brand-secondary: #C0C0C0;
            --brand-accent: #FF4500;
            --brand-highlight: #FFCC00;
            --bg-main: #121212;
            --bg-surface: #1E1E1E;
            --bg-elevated: #2C2C2C;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-disabled: #666666;
            --text-inverse: #000000;
            --color-success: #28A745;
            --color-warning: #FFC107;
            --color-error: #DC3545;
            --color-info: #17A2B8;
            --border-default: #333333;
            --border-strong: #4D4D4D;
            --border-brand: #FFD700;
            --font-primary: 'Poppins', sans-serif;
            --font-secondary: 'Roboto', sans-serif;
            --font-accent: 'Montserrat', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
        body { background-color: var(--bg-main); color: var(--text-primary); font-family: var(--font-primary); line-height: 1.5; overflow-x: hidden; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; padding: 0; }
        img { max-width: 100%; height: auto; display: block; }
        header {
            background-color: var(--bg-surface);
            border-bottom: 2px solid var(--border-brand);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        header .logo-area { display: flex; align-items: center; gap: 10px; }
        header .logo-area img { width: 25px; height: 25px; border-radius: 4px; }
        header .logo-area strong { font-size: 16px; font-weight: normal; color: var(--brand-primary); }
        header .auth-buttons { display: flex; gap: 10px; }
        .btn-auth {
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-brand); }
        .btn-register { background: var(--brand-primary); color: var(--text-inverse); }
        .btn-register:hover { background: var(--brand-highlight); }
        main { max-width: 1200px; margin: 0 auto; padding: 0 15px 100px; }
        .hero-banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; overflow: hidden; border-radius: 0 0 15px 15px; }
        .promo-card {
            background: linear-gradient(135deg, var(--bg-elevated), var(--bg-surface));
            border: 2px solid var(--border-brand);
            border-radius: 20px;
            padding: 30px 20px;
            text-align: center;
            margin: 20px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .promo-card h2 { color: var(--brand-primary); font-family: var(--font-accent); margin-bottom: 15px; }
        .promo-card p { color: var(--text-secondary); margin-bottom: 25px; font-size: 16px; }
        .btn-bonus {
            background: var(--brand-accent);
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: bold;
            font-size: 18px;
            display: inline-block;
            box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
            cursor: pointer;
        }
        .section-title {
            font-size: 24px;
            color: var(--brand-primary);
            margin: 30px 0 20px;
            text-align: center;
            font-family: var(--font-accent);
            position: relative;
        }
        .section-title::after {
            content: '';
            display: block;
            width: 50px;
            height: 3px;
            background: var(--brand-primary);
            margin: 8px auto;
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid var(--border-default);
            transition: transform 0.3s;
        }
        .game-card:hover { transform: translateY(-5px); border-color: var(--brand-primary); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 {
            padding: 10px;
            font-size: 14px;
            text-align: center;
            color: var(--text-primary);
            font-weight: 500;
        }
        .intro-card {
            background: var(--bg-surface);
            border-left: 5px solid var(--brand-primary);
            padding: 25px;
            border-radius: 0 15px 15px 0;
            margin: 30px 0;
        }
        .intro-card h1 { font-size: 28px; color: var(--brand-primary); margin-bottom: 10px; }
        .intro-card p { color: var(--text-secondary); font-size: 16px; line-height: 1.8; }
        .article-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        .article-card {
            background: var(--bg-surface);
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid var(--border-default);
        }
        .article-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
        .article-content { padding: 15px; }
        .article-content h3 { font-size: 16px; margin-bottom: 8px; color: var(--brand-primary); }
        .article-content p { font-size: 13px; color: var(--text-secondary); height: 60px; overflow: hidden; }
        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-bottom: 30px;
        }
        .payment-item {
            background: var(--bg-elevated);
            padding: 15px 5px;
            text-align: center;
            border-radius: 10px;
            border: 1px solid var(--border-default);
            font-size: 12px;
            color: var(--text-secondary);
        }
        .payment-item i { display: block; font-size: 20px; color: var(--brand-primary); margin-bottom: 8px; }
        .guide-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            margin-bottom: 30px;
        }
        .guide-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 15px;
            border-bottom: 3px solid var(--brand-primary);
        }
        .guide-card h3 { color: var(--brand-primary); margin-bottom: 10px; font-size: 18px; }
        .guide-card p { font-size: 14px; color: var(--text-secondary); }
        .review-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        .review-card {
            background: var(--bg-elevated);
            padding: 20px;
            border-radius: 15px;
            position: relative;
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--brand-primary); }
        .review-header span { font-weight: bold; font-size: 14px; }
        .review-stars { color: var(--color-warning); font-size: 12px; margin-bottom: 10px; }
        .review-text { font-size: 13px; color: var(--text-secondary); margin-bottom: 10px; }
        .review-date { font-size: 11px; color: var(--text-disabled); }
        .winner-list {
            background: var(--bg-surface);
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 30px;
        }
        .winner-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 20px;
            border-bottom: 1px solid var(--border-default);
            font-size: 13px;
        }
        .winner-item:last-child { border-bottom: none; }
        .winner-name { color: var(--text-primary); font-weight: 500; }
        .winner-game { color: var(--text-secondary); font-style: italic; }
        .winner-amount { color: var(--brand-primary); font-weight: bold; }
        .winner-time { color: var(--text-disabled); font-size: 11px; }
        .provider-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-bottom: 30px;
        }
        .provider-box {
            background: var(--bg-elevated);
            padding: 15px;
            text-align: center;
            border-radius: 10px;
            font-weight: 600;
            color: var(--brand-primary);
            border: 1px solid var(--border-default);
        }
        .faq-section { margin-bottom: 30px; }
        .faq-item {
            background: var(--bg-surface);
            margin-bottom: 10px;
            border-radius: 10px;
            overflow: hidden;
        }
        .faq-question {
            padding: 15px;
            background: var(--bg-elevated);
            color: var(--brand-primary);
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
        }
        .faq-answer { padding: 15px; color: var(--text-secondary); font-size: 14px; border-top: 1px solid var(--border-default); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 5px;
            border-top: 2px solid var(--brand-primary);
            z-index: 2000;
        }
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            font-size: 11px;
            color: var(--text-secondary);
        }
        .nav-item i { font-size: 20px; color: var(--brand-primary); }
        footer {
            background: var(--bg-surface);
            padding: 40px 15px 120px;
            border-top: 1px solid var(--border-default);
        }
        .footer-contact {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
            font-size: 14px;
            color: var(--text-secondary);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 30px;
        }
        .footer-links a {
            font-size: 12px;
            color: var(--text-secondary);
            text-align: center;
        }
        .footer-security {
            text-align: center;
            border-top: 1px solid var(--border-default);
            padding-top: 20px;
            color: var(--text-disabled);
            font-size: 12px;
        }
        .security-icons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 15px;
            font-size: 20px;
            color: var(--brand-primary);
        }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .payment-grid { grid-template-columns: repeat(8, 1fr); }
            .provider-grid { grid-template-columns: repeat(4, 1fr); }
        }