:root {
            --brand-primary: #FFD700;
            --brand-primary-hover: #FFC107;
            --brand-secondary: #C0C0C0;
            --brand-accent: #FF0000;
            --bg-main: #0B0B0B;
            --bg-surface: #1A1A1A;
            --bg-elevated: #2C2C2C;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #666666;
            --text-inverse: #000000;
            --semantic-success: #00C853;
            --semantic-warning: #FFAB00;
            --semantic-error: #FF5252;
            --semantic-info: #2196F3;
            --border-default: #333333;
            --border-strong: #444444;
            --border-brand: #FFD700;
            --font-heading: 'Montserrat', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            --font-body: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        * { 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;
        }
        h1, h2, h3 { font-family: var(--font-heading); line-height: 1.2; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }

        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-section { display: flex; align-items: center; gap: 10px; }
        header .logo-section img { width: 25px; height: 25px; object-fit: cover; }
        header .logo-section strong { font-size: 16px; font-weight: normal; color: var(--brand-primary); }
        header .auth-buttons { display: flex; gap: 10px; }
        .btn-auth {
            padding: 8px 16px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-family: var(--font-body);
            font-size: 14px;
        }
        .btn-login { background: transparent; color: var(--brand-primary); border: 1px solid var(--brand-primary); }
        .btn-login:hover { background: var(--brand-primary); color: var(--text-inverse); }
        .btn-register { background: var(--brand-primary); color: var(--text-inverse); }
        .btn-register:hover { background: var(--brand-primary-hover); }

        main { max-width: 1200px; margin: 0 auto; padding: 20px; }
        
        .hero-banner {
            width: 100%;
            aspect-ratio: 2/1;
            overflow: hidden;
            border-radius: 15px;
            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, #2C2C2C 0%, #000 100%);
            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-size: 18px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { 
            font-family: 'Courier New', monospace; 
            font-size: 40px; 
            font-weight: bold; 
            color: #fff; 
            text-shadow: 0 0 10px var(--brand-primary);
        }

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

        .section-title { 
            font-size: 24px; 
            color: var(--brand-primary); 
            margin: 40px 0 20px; 
            display: flex; 
            align-items: center; 
            gap: 10px; 
        }
        .section-title::after { content: ""; flex: 1; height: 1px; background: var(--border-default); }

        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 40px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-default);
            transition: transform 0.3s, border-color 0.3s;
            text-align: center;
        }
        .game-card:hover { transform: translateY(-5px); 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: 16px; color: var(--text-primary); }

        .payment-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 15px;
            margin-bottom: 40px;
        }
        .payment-item {
            background: var(--bg-elevated);
            padding: 15px;
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: var(--text-secondary);
            border: 1px solid var(--border-default);
        }
        .payment-item i { font-size: 24px; color: var(--brand-primary); }

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

        .win-list {
            background: var(--bg-surface);
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 40px;
            overflow-x: auto;
        }
        .win-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 500px;
        }
        .win-table th { text-align: left; color: var(--text-muted); padding: 12px; border-bottom: 1px solid var(--border-default); }
        .win-table td { padding: 12px; border-bottom: 1px solid var(--border-default); font-size: 14px; }
        .win-amount { color: var(--semantic-success); font-weight: bold; }

        .provider-wall {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-bottom: 40px;
        }
        .provider-box {
            padding: 15px;
            text-align: center;
            font-weight: bold;
            border-radius: 8px;
            background: var(--bg-elevated);
            border: 1px solid var(--border-default);
        }
        .provider-box:nth-child(odd) { color: var(--brand-primary); background: #111; }
        .provider-box:nth-child(even) { color: var(--brand-secondary); background: #1a1a1a; }

        .review-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .review-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border-default);
        }
        .review-header { display: flex; align-items: center; gap: 15px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--brand-secondary); }
        .review-name { font-weight: bold; }
        .review-stars { color: var(--brand-primary); font-size: 12px; margin-bottom: 10px; }
        .review-content { color: var(--text-secondary); font-size: 14px; margin-bottom: 10px; }
        .review-date { font-size: 12px; color: var(--text-muted); }

        .faq-section { margin-bottom: 40px; }
        .faq-item {
            background: var(--bg-surface);
            margin-bottom: 10px;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--border-default);
        }
        .faq-question {
            padding: 15px 20px;
            background: var(--bg-elevated);
            cursor: pointer;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--brand-primary);
        }
        .faq-answer { padding: 15px 20px; color: var(--text-secondary); font-size: 14px; line-height: 1.6; }

        .security-footer {
            background: var(--bg-surface);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--border-default);
            margin-bottom: 40px;
        }
        .security-icons { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-bottom: 20px; }
        .security-icon { display: flex; flex-direction: column; align-items: center; gap: 10px; font-size: 12px; color: var(--text-secondary); }
        .security-icon i { font-size: 30px; color: var(--brand-primary); }
        .responsible-gaming { font-size: 14px; color: var(--text-secondary); }
        .responsible-gaming a { color: var(--brand-primary); text-decoration: underline; }

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

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

        @media (max-width: 768px) {
            .footer-links { grid-template-columns: repeat(2, 1fr); }
            .jackpot-amount { font-size: 28px; }
            .intro-card h1 { font-size: 22px; }
        }