:root {
            --brand-primary: #FFD700;
            --brand-secondary: #C0C0C0;
            --brand-accent: #FF0000;
            --brand-highlight: #FFCC00;
            --bg-main: #0B0B0B;
            --bg-surface: #1A1A1A;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --bg-contrast: #252525;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #808080;
            --text-inverse: #000000;
            --semantic-success: #28A745;
            --semantic-warning: #FFC107;
            --semantic-error: #DC3545;
            --semantic-info: #17A2B8;
            --border-subtle: #333333;
            --border-default: #444444;
            --border-strong: #FFD700;
            --font-primary: 'Poppins', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            --font-secondary: 'Montserrat', sans-serif;
            --font-mono: 'Roboto Mono', monospace;
        }

        * { 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: var(--line-height-normal); 
            overflow-x: hidden;
        }

        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

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

        .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, #000, #333); 
            text-align: center; 
            padding: 20px 0; 
            border: 2px solid var(--brand-highlight); 
            margin: 20px 0; 
            border-radius: 15px;
            box-shadow: 0 0 20px rgba(255, 204, 0, 0.3);
        }
        .jackpot-title { font-size: 18px; color: var(--brand-secondary); text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-number { 
            font-family: var(--font-mono); 
            font-size: 32px; 
            font-weight: bold; 
            color: var(--brand-primary); 
            animation: roll 0.1s infinite;
        }
        @keyframes roll { 0% { transform: translateY(0); } 50% { transform: translateY(-2px); } 100% { transform: translateY(0); } }

        .intro-section { text-align: center; padding: 40px 0; }
        .intro-section h1 { font-size: 32px; color: var(--brand-primary); margin-bottom: 20px; line-height: 1.2; }
        .intro-section p { font-size: 18px; color: var(--text-secondary); max-width: 800px; margin: 0 auto; }

        .section-title { text-align: center; margin: 40px 0 20px; font-size: 24px; color: var(--brand-primary); text-transform: uppercase; }
        
        .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; 
            color: inherit; 
            transition: 0.3s; 
            border: 1px solid var(--border-subtle);
        }
        .game-card:hover { border-color: var(--brand-primary); transform: scale(1.02); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { padding: 12px; font-size: 16px; text-align: center; }

        .article-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
        .article-card { 
            background: var(--bg-surface); 
            border-radius: 15px; 
            overflow: hidden; 
            text-decoration: none; 
            color: inherit; 
            border: 1px solid var(--border-subtle);
            display: flex; 
            flex-direction: column;
        }
        .article-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
        .article-content { padding: 15px; }
        .article-content h3 { font-size: 18px; margin-bottom: 10px; color: var(--brand-highlight); }
        .article-content p { font-size: 14px; color: var(--text-secondary); }

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

        .win-table { 
            width: 100%; 
            border-collapse: collapse; 
            background: var(--bg-surface); 
            border-radius: 10px; 
            overflow: hidden; 
            margin: 20px 0;
        }
        .win-table th, .win-table td { padding: 12px; text-align: left; border-bottom: 1px solid var(--border-subtle); }
        .win-table th { background: var(--bg-contrast); color: var(--brand-primary); }

        .provider-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
        .provider-card { 
            background: linear-gradient(135deg, #222, #111); 
            padding: 25px; 
            text-align: center; 
            border-radius: 12px; 
            font-weight: bold; 
            border: 1px solid var(--border-default);
            font-size: 18px;
        }

        .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: 15px; 
            border-left: 4px solid var(--brand-primary);
        }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-header i { font-size: 30px; color: var(--brand-secondary); }
        .comment-rating { color: #FFD700; margin-bottom: 10px; }
        .comment-body { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
        .comment-date { font-size: 12px; color: var(--text-muted); margin-top: 10px; display: block; }

        .faq-section { max-width: 800px; margin: 40px auto; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-q { padding: 15px; cursor: pointer; font-weight: 600; background: var(--bg-contrast); border-bottom: 1px solid var(--border-subtle); }
        .faq-a { padding: 15px; color: var(--text-secondary); font-size: 15px; }

        .safety-section { 
            background: var(--bg-surface); 
            padding: 30px; 
            text-align: center; 
            border-radius: 15px; 
            border: 1px solid var(--border-subtle);
        }
        .safety-icons { display: flex; justify-content: center; gap: 30px; margin-bottom: 20px; font-size: 24px; color: var(--brand-primary); }
        .safety-text { font-size: 14px; color: var(--text-secondary); }

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

        footer { background: #050505; padding: 40px 0 100px; text-align: center; border-top: 1px solid var(--border-subtle); }
        .footer-links { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); 
            gap: 10px; 
            margin-bottom: 30px; 
        }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; }
        .footer-copy { color: var(--text-muted); font-size: 14px; }

        @media (max-width: 768px) {
            .payment-grid { grid-template-columns: repeat(2, 1fr); }
            .intro-section h1 { font-size: 24px; }
            .header-flex { padding: 0 10px; }
        }