:root {
            --primary: #FFD700;
            --primary-dark: #C5A000;
            --secondary: #B22222;
            --accent: #FF4500;
            --bg-main: #0F0F0F;
            --bg-surface: #1A1A1A;
            --bg-surface-light: #2D2D2D;
            --overlay: rgba(0, 0, 0, 0.8);
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-disabled: #666666;
            --text-highlight: #FFD700;
            --success: #00C851;
            --warning: #FFBB00;
            --error: #FF4444;
            --info: #33B5E5;
            --border-light: #333333;
            --border-medium: #444444;
            --border-strong: #FFD700;
            --font-heading: 'Montserrat', 'Segoe UI', Roboto, sans-serif;
            --font-body: 'Inter', 'Segoe UI', Roboto, 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-body); line-height: 1.5; overflow-x: hidden; }
        h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; color: var(--text-primary); }
        a { text-decoration: none; color: inherit; transition: 0.3s; }

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

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

        .jackpot-container {
            background: linear-gradient(45deg, var(--bg-surface), var(--secondary));
            padding: 30px;
            text-align: center;
            border-radius: 15px;
            border: 2px solid var(--primary);
            margin-bottom: 30px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
        }
        .jackpot-title { font-family: var(--font-accent); font-size: 24px; color: var(--primary); text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount { 
            font-family: var(--font-accent); 
            font-size: 48px; 
            color: #fff; 
            font-weight: bold; 
            text-shadow: 0 0 10px var(--primary);
        }

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

        .section-title { 
            font-size: 24px; 
            margin: 40px 0 20px; 
            display: flex; 
            align-items: center; 
            gap: 10px; 
            border-bottom: 1px solid var(--border-medium); 
            padding-bottom: 10px; 
        }
        .section-title i { color: var(--primary); }

        .game-grid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 15px; 
        }
        .game-card { 
            background: var(--bg-surface); 
            border-radius: 12px; 
            overflow: hidden; 
            border: 1px solid var(--border-light); 
            transition: 0.3s; 
        }
        .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: 16px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

        .payment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 15px;
            margin-bottom: 30px;
        }
        .payment-item {
            background: var(--bg-surface-light);
            padding: 15px;
            text-align: center;
            border-radius: 10px;
            border: 1px solid var(--border-medium);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
        .payment-item i { font-size: 24px; color: var(--primary); }
        .payment-item span { font-size: 14px; font-weight: 500; }

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

        .win-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--bg-surface);
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 30px;
        }
        .win-table th, .win-table td { padding: 12px; text-align: left; border-bottom: 1px solid var(--border-light); }
        .win-table th { background: var(--bg-surface-light); color: var(--primary); font-family: var(--font-accent); }
        .win-table tr:hover { background: rgba(255, 215, 0, 0.05); }
        .win-amount { color: var(--success); font-weight: bold; }

        .provider-wall {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 30px;
        }
        .provider-box {
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            font-weight: bold;
            font-family: var(--font-accent);
            text-transform: uppercase;
            background: var(--bg-surface-light);
            border: 1px solid var(--border-medium);
        }
        .provider-box:nth-child(odd) { color: var(--primary); border-color: var(--primary); }
        .provider-box:nth-child(even) { color: var(--accent); border-color: var(--accent); }

        .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: 1px solid var(--border-light);
        }
        .comment-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
        .comment-header i { font-size: 30px; color: var(--primary); }
        .comment-user { font-weight: bold; font-size: 16px; }
        .comment-stars { color: var(--warning); font-size: 14px; margin-bottom: 10px; }
        .comment-body { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; }
        .comment-date { font-size: 12px; color: var(--text-disabled); text-align: right; }

        .faq-section { margin-bottom: 30px; }
        .faq-item { 
            background: var(--bg-surface); 
            margin-bottom: 10px; 
            border-radius: 10px; 
            overflow: hidden; 
            border: 1px solid var(--border-light); 
        }
        .faq-question { 
            padding: 15px; 
            cursor: pointer; 
            font-weight: 600; 
            display: flex; 
            justify-content: space-between; 
            color: var(--primary); 
        }
        .faq-answer { padding: 15px; color: var(--text-secondary); font-size: 14px; border-top: 1px solid var(--border-light); display: block; }

        .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; align-items: center; gap: 8px; color: var(--text-secondary); font-size: 14px; }
        .sec-icon i { color: var(--success); }
        .security-text { color: var(--text-secondary); font-size: 14px; margin-bottom: 15px; }
        .security-links a { color: var(--primary); text-decoration: underline; margin: 0 10px; }

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

        footer {
            background: var(--bg-surface);
            padding: 40px 20px 100px;
            border-top: 1px solid var(--border-light);
            text-align: center;
        }
        .footer-contact { margin-bottom: 30px; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
        .footer-contact a { color: var(--text-secondary); font-size: 14px; }
        .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); font-size: 14px; }
        .footer-links a:hover { color: var(--primary); }
        .footer-copy { color: var(--text-disabled); font-size: 13px; }

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