:root {
            --primary: #FFD700;
            --secondary: #B8860B;
            --accent: #FF0000;
            --highlight: #FFC107;
            --bg-main: #0B0B0B;
            --bg-surface: #1A1A1A;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --bg-contrast: #252525;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #808080;
            --text-inverted: #000000;
            --success: #28A745;
            --error: #DC3545;
            --warning: #FFC107;
            --info: #17A2B8;
            --border-subtle: #333333;
            --border-medium: #444444;
            --border-strong: #FFD700;
            --font-primary: 'Poppins', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            --font-secondary: 'Montserrat', sans-serif;
            --font-accent: 'Oswald', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-primary);
            line-height: 1.5;
            overflow-x: hidden;
        }
        header {
            background-color: var(--bg-surface);
            border-bottom: 2px solid var(--border-strong);
            padding: 10px 20px;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
        .brand img { width: 25px; height: 25px; }
        .brand strong { font-size: 16px; font-weight: normal; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 8px;
            cursor: pointer;
            font-family: var(--font-secondary);
            font-weight: 600;
            border: none;
            transition: 0.3s;
            text-decoration: none;
            font-size: 14px;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--primary); color: var(--text-inverted); }
        .btn:hover { opacity: 0.8; transform: translateY(-2px); }
        main { padding-bottom: 80px; }
        .hero-banner { 
            width: 100%; 
            aspect-ratio: 2/1; 
            cursor: pointer; 
            overflow: hidden; 
            display: block;
        }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section {
            background: linear-gradient(45deg, var(--bg-surface), var(--bg-contrast));
            text-align: center;
            padding: 20px;
            border-bottom: 1px solid var(--border-subtle);
        }
        .jackpot-title { color: var(--text-secondary); font-size: 14px; text-transform: uppercase; margin-bottom: 5px; }
        .jackpot-amount {
            font-family: var(--font-accent);
            font-size: 32px;
            color: var(--primary);
            font-weight: bold;
            display: block;
        }
        .intro-section { padding: 40px 20px; text-align: center; max-width: 800px; margin: 0 auto; }
        .intro-section h1 { font-size: 28px; color: var(--primary); margin-bottom: 15px; }
        .intro-section p { color: var(--text-secondary); font-size: 16px; }
        .section-title { 
            text-align: center; 
            font-family: var(--font-accent); 
            font-size: 24px; 
            color: var(--primary); 
            margin: 30px 0 20px;
            text-transform: uppercase;
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            padding: 0 20px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: 15px;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            border: 1px solid var(--border-subtle);
            transition: 0.3s;
        }
        .game-card:hover { border-color: var(--primary); transform: scale(1.02); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { 
            padding: 10px; 
            font-size: 14px; 
            text-align: center; 
            font-family: var(--font-secondary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .article-list { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
            gap: 20px; 
            padding: 0 20px; 
        }
        .article-card {
            background: var(--bg-surface);
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            display: flex;
            flex-direction: column;
            text-decoration: none;
            color: inherit;
        }
        .article-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
        .article-content { padding: 15px; }
        .article-content h3 { font-size: 18px; color: var(--primary); margin-bottom: 10px; }
        .article-content p { font-size: 14px; color: var(--text-secondary); }
        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            padding: 0 20px;
        }
        .payment-item {
            background: var(--bg-contrast);
            padding: 15px 5px;
            border-radius: 10px;
            text-align: center;
            font-size: 12px;
            border: 1px solid var(--border-subtle);
        }
        .payment-item i { display: block; font-size: 20px; color: var(--primary); margin-bottom: 5px; }
        .win-list {
            background: var(--bg-surface);
            margin: 20px;
            border-radius: 15px;
            padding: 15px;
            border: 1px solid var(--border-medium);
        }
        .win-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-subtle);
            font-size: 13px;
        }
        .win-item:last-child { border-bottom: none; }
        .win-user { color: var(--text-primary); font-weight: bold; }
        .win-amount { color: var(--primary); font-weight: bold; }
        .provider-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            padding: 0 20px;
        }
        .provider-box {
            background: linear-gradient(135deg, var(--bg-contrast), var(--bg-surface));
            padding: 20px;
            text-align: center;
            border-radius: 15px;
            font-family: var(--font-accent);
            font-size: 18px;
            border: 1px solid var(--border-subtle);
            color: var(--primary);
        }
        .comment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            padding: 0 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: 10px; margin-bottom: 10px; }
        .comment-header i { font-size: 24px; color: var(--primary); }
        .comment-name { font-weight: bold; font-size: 14px; }
        .comment-stars { color: var(--highlight); font-size: 12px; margin-bottom: 10px; }
        .comment-body { font-size: 13px; color: var(--text-secondary); margin-bottom: 10px; }
        .comment-date { font-size: 11px; color: var(--text-muted); }
        .faq-section { padding: 20px; max-width: 900px; margin: 0 auto; }
        .faq-item { 
            background: var(--bg-surface); 
            margin-bottom: 15px; 
            border-radius: 10px; 
            border: 1px solid var(--border-subtle);
            padding: 20px;
        }
        .faq-item h3 { font-size: 16px; color: var(--primary); margin-bottom: 10px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .security-footer {
            background: var(--bg-contrast);
            padding: 30px 20px;
            text-align: center;
            border-top: 2px solid var(--border-strong);
        }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; }
        .security-icons i { font-size: 30px; color: var(--primary); }
        .security-text { font-size: 13px; color: var(--text-secondary); margin-bottom: 15px; line-height: 1.6; }
        .security-link { color: var(--primary); text-decoration: none; font-weight: bold; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-strong);
            z-index: 2000;
        }
        .nav-item {
            text-decoration: none;
            color: var(--text-secondary);
            text-align: center;
            font-size: 11px;
            flex: 1;
        }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 3px; }
        .nav-item:hover { color: var(--primary); }
        footer { background: var(--bg-surface); padding: 40px 20px 100px; border-top: 1px solid var(--border-subtle); }
        .footer-links { 
            display: grid; 
            grid-template-columns: repeat(3, 1fr); 
            gap: 10px; 
            margin-bottom: 30px; 
            text-align: center; 
        }
        .footer-links a { 
            color: var(--text-muted); 
            text-decoration: none; 
            font-size: 12px; 
            transition: 0.3s; 
        }
        .footer-links a:hover { color: var(--primary); }
        .copyright { text-align: center; font-size: 12px; color: var(--text-muted); }
        @media (max-width: 600px) {
            .payment-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-links { grid-template-columns: repeat(2, 1fr); }
        }