:root {
            --brand-primary: #FFD700;
            --brand-primary-dark: #C5A000;
            --brand-secondary: #B22222;
            --brand-accent: #FF4500;
            --bg-main: #0B0B0B;
            --bg-surface: #1A1A1A;
            --bg-elevated: #2D2D2D;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-disabled: #666666;
            --text-inverse: #000000;
            --sem-success: #28A745;
            --sem-warning: #FFC107;
            --sem-error: #DC3545;
            --sem-info: #17A2B8;
            --border-subtle: #333333;
            --border-medium: #444444;
            --border-strong: #FFD700;
            --font-heading: 'Montserrat', sans-serif;
            --font-body: 'Roboto', sans-serif;
            --font-mono: 'JetBrains Mono', monospace;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { 
            background-color: var(--bg-main); 
            color: var(--text-primary); 
            font-family: var(--font-body); 
            line-height: 1.5; 
            overflow-x: hidden; 
            padding-bottom: 80px;
        }

        header {
            background-color: var(--bg-surface);
            border-bottom: 1px solid var(--border-subtle);
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        header .brand { display: flex; align-items: center; gap: 10px; }
        header .brand img { width: 25px; height: 25px; object-fit: contain; }
        header .brand strong { font-size: 16px; font-weight: normal; color: var(--brand-primary); }
        header .auth-btns { display: flex; gap: 10px; }
        header .btn { 
            padding: 8px 16px; 
            border-radius: 5px; 
            cursor: pointer; 
            font-family: var(--font-heading); 
            font-weight: 600; 
            border: none; 
            transition: 0.3s; 
        }
        header .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--brand-primary); }
        header .btn-register { background: var(--brand-primary); color: var(--text-inverse); }
        header .btn:hover { opacity: 0.8; transform: translateY(-2px); }

        main { max-width: 1200px; margin: 0 auto; padding: 20px; }
        
        .hero-banner { 
            width: 100%; 
            aspect-ratio: 2/1; 
            border-radius: 15px; 
            overflow: hidden; 
            cursor: pointer; 
            margin-bottom: 20px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-container {
            background: linear-gradient(135deg, var(--bg-surface), #331a00);
            border: 2px solid var(--brand-primary);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
        }
        .jackpot-title { color: var(--brand-primary); font-family: var(--font-heading); font-size: 20px; text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount { 
            font-family: var(--font-mono); 
            font-size: 40px; 
            font-weight: bold; 
            color: #fff; 
            text-shadow: 0 0 10px var(--brand-primary);
        }

        .intro-card {
            background: var(--bg-surface);
            border-left: 5px solid var(--brand-primary);
            padding: 30px;
            border-radius: 0 15px 15px 0;
            margin-bottom: 40px;
        }
        .intro-card h1 { font-family: var(--font-heading); font-size: 28px; color: var(--brand-primary); margin-bottom: 15px; line-height: 1.2; }
        .intro-card p { color: var(--text-secondary); font-size: 16px; }

        section { margin-bottom: 50px; }
        h2 { font-family: var(--font-heading); font-size: 24px; color: var(--brand-primary); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
        h2::before { content: ''; width: 4px; height: 24px; background: var(--brand-primary); display: inline-block; border-radius: 2px; }

        .game-grid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 15px; 
        }
        .game-card { 
            background: var(--bg-surface); 
            border-radius: 12px; 
            overflow: hidden; 
            text-decoration: none; 
            transition: 0.3s; 
            border: 1px solid var(--border-subtle);
        }
        .game-card:hover { transform: scale(1.03); border-color: var(--brand-primary); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { 
            padding: 12px; 
            font-size: 14px; 
            color: var(--text-primary); 
            text-align: center; 
            font-family: var(--font-heading); 
            white-space: nowrap; 
            overflow: hidden; 
            text-overflow: ellipsis; 
        }

        .payment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 10px;
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 15px;
        }
        .payment-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 15px;
            background: var(--bg-elevated);
            border-radius: 10px;
            color: var(--text-secondary);
            font-size: 13px;
            gap: 8px;
            text-align: center;
        }
        .payment-item i { font-size: 24px; color: var(--brand-primary); }

        .guide-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        .guide-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 15px;
            border: 1px solid var(--border-subtle);
        }
        .guide-card h3 { color: var(--brand-primary); margin-bottom: 10px; font-size: 18px; }
        .guide-card p { color: var(--text-secondary); font-size: 14px; }

        .win-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--bg-surface);
            border-radius: 15px;
            overflow: hidden;
        }
        .win-table th, .win-table td { 
            padding: 12px; 
            text-align: center; 
            border-bottom: 1px solid var(--border-subtle); 
        }
        .win-table th { background: var(--bg-elevated); color: var(--brand-primary); font-family: var(--font-heading); }
        .win-table td { color: var(--text-secondary); font-size: 14px; }
        .win-amount { color: var(--sem-success); font-weight: bold; }

        .provider-wall {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }
        .provider-block {
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            font-weight: bold;
            font-family: var(--font-heading);
        }
        .p-gold { background: var(--brand-primary); color: var(--text-inverse); }
        .p-red { background: var(--brand-secondary); color: var(--text-primary); }

        .comment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        .comment-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 15px;
            border: 1px solid var(--border-subtle);
        }
        .comment-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
        .comment-header i { font-size: 30px; color: var(--brand-primary); }
        .comment-header div strong { display: block; font-size: 15px; }
        .comment-stars { color: var(--brand-primary); font-size: 13px; margin-bottom: 10px; }
        .comment-body { color: var(--text-secondary); font-size: 14px; margin-bottom: 10px; }
        .comment-date { font-size: 12px; color: var(--text-disabled); }

        .faq-container {
            display: grid;
            gap: 15px;
        }
        .faq-item {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 10px;
            border: 1px solid var(--border-subtle);
        }
        .faq-item h3 { color: var(--brand-primary); font-size: 16px; margin-bottom: 10px; }
        .faq-item p { color: var(--text-secondary); font-size: 14px; }

        .security-footer {
            background: var(--bg-surface);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--border-medium);
        }
        .security-icons { display: flex; justify-content: center; gap: 30px; margin-bottom: 20px; flex-wrap: wrap; }
        .sec-icon { display: flex; flex-direction: column; align-items: center; gap: 5px; font-size: 13px; color: var(--text-secondary); }
        .sec-icon i { font-size: 30px; color: var(--sem-success); }
        .security-text { color: var(--text-secondary); font-size: 14px; line-height: 1.8; }
        .security-text a { color: var(--brand-primary); text-decoration: none; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--bg-surface);
            border-top: 1px solid var(--border-subtle);
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 10px 0;
            z-index: 2000;
            box-shadow: 0 -5px 15px rgba(0,0,0,0.5);
        }
        .nav-item { 
            text-decoration: none; 
            color: var(--text-secondary); 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            font-size: 11px; 
            gap: 4px;
            transition: 0.3s;
        }
        .nav-item i { font-size: 20px; }
        .nav-item:hover { color: var(--brand-primary); }

        footer {
            background: var(--bg-surface);
            padding: 40px 20px;
            color: var(--text-secondary);
            text-align: center;
            border-top: 1px solid var(--border-subtle);
        }
        footer .contact-row { 
            display: flex; 
            justify-content: center; 
            gap: 20px; 
            margin-bottom: 30px; 
            flex-wrap: wrap; 
        }
        footer .contact-row a { color: var(--text-primary); text-decoration: none; font-size: 14px; border: 1px solid var(--border-subtle); padding: 5px 12px; border-radius: 20px; transition: 0.3s; }
        footer .contact-row a:hover { border-color: var(--brand-primary); color: var(--brand-primary); }
        
        footer .link-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            max-width: 800px;
            margin: 0 auto 30px;
            text-align: left;
        }
        footer .link-grid a { color: var(--text-secondary); text-decoration: none; font-size: 13px; transition: 0.3s; }
        footer .link-grid a:hover { color: var(--brand-primary); }

        footer .copyright { 
            font-size: 13px; 
            color: var(--text-disabled); 
            border-top: 1px solid var(--border-subtle); 
            padding-top: 20px; 
        }

        @media (max-width: 768px) {
            .link-grid { grid-template-columns: repeat(3, 1fr); }
            .hero-banner { aspect-ratio: 1/1; }
            .jackpot-amount { font-size: 30px; }
        }