:root {
            --primary: #FFD700;
            --secondary: #C0C0C0;
            --accent: #FF0000;
            --highlight: #FFC107;
            --bg-main: #0B0B0B;
            --bg-surface: #1A1A1A;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --grad-start: #1A1A1A;
            --grad-end: #000000;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #666666;
            --text-inverse: #000000;
            --success: #00C851;
            --error: #FF4444;
            --warning: #FFBB33;
            --info: #33B5E5;
            --border-def: #333333;
            --border-strong: #4D4D4D;
            --border-brand: #FFD700;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            background: linear-gradient(to bottom, var(--grad-start), var(--grad-end));
            color: var(--text-primary);
            font-family: 'Roboto', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; color: var(--primary); }
        header {
            background-color: var(--bg-surface);
            border-bottom: 2px solid var(--border-brand);
            padding: 10px 20px;
            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 img { width: 25px; height: 25px; border-radius: 50%; }
        header .auth-btns { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 20px;
            cursor: pointer;
            font-weight: 600;
            border: none;
            transition: 0.3s;
            font-family: 'Poppins', sans-serif;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--primary); color: var(--text-inverse); }
        .btn:hover { opacity: 0.8; transform: scale(1.05); }
        main { max-width: 1200px; margin: 0 auto; padding: 20px; padding-bottom: 100px; }
        .banner-container { width: 100%; aspect-ratio: 2/1; cursor: pointer; border-radius: 15px; overflow: hidden; margin-bottom: 20px; box-shadow: 0 0 20px var(--border-brand); }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: linear-gradient(45deg, #B8860B, #FFD700);
            color: #000;
            text-align: center;
            padding: 20px;
            border-radius: 15px;
            margin-bottom: 20px;
            box-shadow: 0 0 15px var(--primary);
        }
        .jackpot-value { font-size: 32px; font-weight: bold; font-family: 'Poppins', sans-serif; }
        .intro-card {
            background: var(--bg-surface);
            padding: 30px;
            border-radius: 20px;
            border: 1px solid var(--border-strong);
            text-align: center;
            margin-bottom: 30px;
        }
        .intro-card h1 { font-size: 24px; margin-bottom: 15px; }
        .intro-card p { color: var(--text-secondary); font-size: 16px; }
        .section-title { text-align: center; margin: 40px 0 20px; font-size: 24px; text-transform: uppercase; }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: 15px;
            text-decoration: none;
            color: inherit;
            overflow: hidden;
            border: 1px solid var(--border-def);
            transition: 0.3s;
            display: block;
        }
        .game-card:hover { border-color: var(--primary); transform: translateY(-5px); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { padding: 10px; font-size: 14px; text-align: center; color: #fff; }
        .payment-methods {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin: 30px 0;
        }
        .payment-item {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            font-size: 12px;
            border: 1px solid var(--border-def);
            color: var(--text-secondary);
        }
        .payment-item i { display: block; font-size: 24px; color: var(--primary); margin-bottom: 5px; }
        .guides-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        .guide-card { background: var(--bg-surface); padding: 20px; border-radius: 15px; border-left: 4px solid var(--primary); }
        .guide-card h3 { font-size: 18px; margin-bottom: 10px; }
        .guide-card p { font-size: 14px; color: var(--text-secondary); }
        .winner-list { background: var(--bg-surface); border-radius: 15px; overflow: hidden; margin-bottom: 30px; }
        .winner-row {
            display: grid;
            grid-template-columns: 1fr 2fr 1fr 1fr;
            padding: 12px;
            border-bottom: 1px solid var(--border-def);
            font-size: 13px;
            text-align: center;
        }
        .winner-row:nth-child(even) { background: #222; }
        .winner-row .win-amount { color: var(--primary); font-weight: bold; }
        .provider-wall {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 30px;
        }
        .provider-block {
            background: linear-gradient(135deg, #222, #111);
            padding: 20px;
            border-radius: 15px;
            border: 1px solid var(--border-strong);
            text-align: center;
            font-weight: bold;
            color: var(--primary);
        }
        .comment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        .comment-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 15px;
            position: relative;
        }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-header i { font-size: 30px; color: var(--secondary); }
        .stars { color: var(--highlight); font-size: 12px; margin-bottom: 10px; }
        .comment-date { font-size: 11px; color: var(--text-muted); display: block; margin-top: 10px; }
        .faq-section { margin-bottom: 30px; }
        .faq-item {
            background: var(--bg-surface);
            margin-bottom: 10px;
            border-radius: 10px;
            padding: 15px;
            border: 1px solid var(--border-def);
        }
        .faq-item h3 { font-size: 16px; margin-bottom: 10px; color: #fff; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .security-box {
            background: #111;
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            border: 1px dashed var(--border-brand);
        }
        .security-box i { font-size: 40px; color: var(--success); margin-bottom: 15px; }
        .security-box p { font-size: 14px; margin-bottom: 10px; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 2px solid var(--border-brand);
            z-index: 2000;
        }
        .nav-item {
            text-decoration: none;
            color: var(--text-secondary);
            text-align: center;
            font-size: 11px;
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        .nav-item i { font-size: 20px; color: var(--primary); }
        footer {
            background: #000;
            padding: 40px 20px;
            text-align: center;
            border-top: 1px solid var(--border-def);
        }
        .footer-contact {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
        .footer-contact a { color: var(--primary); text-decoration: none; font-size: 14px; }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 30px;
            text-align: left;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        .footer-copy { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-def); padding-top: 20px; }
        @media (max-width: 768px) {
            .payment-methods { grid-template-columns: repeat(2, 1fr); }
            .footer-links { grid-template-columns: repeat(2, 1fr); text-align: center; }
        }