:root {
            --primary: #FFD700;
            --primary-hover: #FFC107;
            --secondary: #C0C0C0;
            --accent: #FF0000;
            --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: #4CAF50;
            --error: #F44336;
            --warning: #FF9800;
            --info: #2196F3;
            --border-light: #333333;
            --border-medium: #444444;
            --border-strong: #FFD700;
            --font-heading: 'Montserrat', 'Segoe UI', Roboto, sans-serif;
            --font-body: 'Open Sans', 'Roboto', Arial, sans-serif;
        }

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

        header {
            background: var(--bg-surface);
            border-bottom: 1px solid var(--border-light);
            padding: 0 15px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        header .brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
        header .brand img { width: 25px; height: 25px; object-fit: cover; }
        header .brand strong { font-size: 16px; font-weight: normal; color: var(--primary); }
        header .auth-btns { display: flex; gap: 10px; }
        header .btn { 
            padding: 6px 15px; 
            border-radius: 4px; 
            cursor: pointer; 
            font-family: var(--font-heading); 
            font-weight: 600; 
            font-size: 14px; 
            transition: 0.3s; 
            border: none; 
        }
        header .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-medium); }
        header .btn-login:hover { background: var(--border-medium); }
        header .btn-reg { background: var(--primary); color: var(--text-inverse); }
        header .btn-reg:hover { background: var(--primary-hover); }

        main { max-width: 1200px; margin: 0 auto; padding: 20px 15px; }

        .hero-banner { 
            width: 100%; 
            aspect-ratio: 2/1; 
            border-radius: 12px; 
            overflow: hidden; 
            cursor: pointer; 
            margin-bottom: 20px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.5);
        }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-section {
            background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
            border: 2px solid var(--primary);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 25px;
            position: relative;
            overflow: hidden;
        }
        .jackpot-title { font-family: var(--font-heading); color: var(--primary); font-size: 18px; margin-bottom: 10px; text-transform: uppercase; }
        .jackpot-amount { 
            font-family: 'JetBrains Mono', monospace; 
            font-size: 32px; 
            font-weight: bold; 
            color: #fff; 
            text-shadow: 0 0 10px var(--primary);
        }

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

        section { margin-bottom: 40px; }
        h2 { 
            font-family: var(--font-heading); 
            font-size: 22px; 
            color: var(--primary); 
            margin-bottom: 20px; 
            display: flex; 
            align-items: center; 
            gap: 10px;
        }
        h2::before { content: ''; width: 4px; height: 20px; background: var(--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: transform 0.3s, border 0.3s; 
            border: 1px solid var(--border-light);
        }
        .game-card:hover { transform: translateY(-5px); border-color: var(--primary); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { 
            padding: 12px; 
            font-size: 15px; 
            text-align: center; 
            color: var(--text-primary); 
            font-family: var(--font-heading);
        }

        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-bottom: 30px;
        }
        .pay-item {
            background: var(--bg-surface);
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            font-size: 13px;
            color: var(--text-secondary);
            border: 1px solid var(--border-light);
        }
        .pay-item i { display: block; font-size: 24px; color: var(--primary); margin-bottom: 8px; }

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

        .win-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            font-size: 14px;
        }
        .win-table th { background: var(--border-medium); color: var(--primary); padding: 12px; text-align: left; }
        .win-table td { padding: 12px; border-bottom: 1px solid var(--border-light); color: var(--text-secondary); }
        .win-table .win-amount { color: var(--success); font-weight: bold; }

        .provider-wall {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }
        .provider-box {
            padding: 15px;
            text-align: center;
            font-weight: bold;
            border-radius: 8px;
            font-family: var(--font-heading);
            text-transform: uppercase;
            font-size: 14px;
        }
        .p-gold { background: linear-gradient(45deg, #B8860B, #FFD700); color: #000; }
        .p-silver { background: linear-gradient(45deg, #708090, #C0C0C0); color: #000; }

        .comment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }
        .comment-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border-light);
        }
        .comment-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
        .comment-header i { font-size: 40px; color: var(--primary); }
        .comment-header .user-info h4 { font-size: 16px; }
        .comment-stars { color: #f1c40f; font-size: 13px; margin-bottom: 10px; }
        .comment-body { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; }
        .comment-date { font-size: 12px; color: var(--text-muted); text-align: right; }

        .faq-section {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .faq-item {
            background: var(--bg-surface);
            border-radius: 8px;
            padding: 20px;
            border: 1px solid var(--border-light);
        }
        .faq-item h3 { color: var(--primary); font-size: 16px; margin-bottom: 10px; }
        .faq-item p { color: var(--text-secondary); font-size: 14px; line-height: 1.6; }

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

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 65px;
            background: var(--bg-surface);
            border-top: 1px solid var(--border-light);
            display: flex;
            justify-content: space-around;
            align-items: center;
            z-index: 2000;
            padding: 0 10px;
        }
        .nav-item { 
            text-decoration: none; 
            color: var(--text-secondary); 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            font-size: 11px; 
            gap: 4px;
            flex: 1;
        }
        .nav-item i { font-size: 20px; }
        .nav-item:hover { color: var(--primary); }

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

        @media (max-width: 768px) {
            .payment-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-links { grid-template-columns: repeat(3, 1fr); }
        }