:root {
            --primary: #FFD700;
            --primary-variant: #B8860B;
            --secondary: #C0C0C0;
            --accent: #FF4500;
            --bg-main: #0B0B0B;
            --bg-surface: #1A1A1A;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --gradient-start: #1a1a1a;
            --gradient-end: #000000;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #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: 'Open Sans', 'Roboto', Arial, 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;
            background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
        }
        header {
            background-color: var(--bg-surface);
            border-bottom: 2px solid var(--border-strong);
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        header .logo-area { display: flex; align-items: center; gap: 10px; }
        header img { width: 25px; height: 25px; object-fit: cover; }
        header strong { font-size: 16px; font-weight: normal; color: var(--text-primary); }
        header .auth-buttons { display: flex; gap: 10px; }
        .btn { 
            padding: 8px 16px; 
            border-radius: 5px; 
            cursor: pointer; 
            font-weight: 600; 
            text-decoration: none; 
            transition: 0.3s; 
            border: none; 
            font-family: var(--font-heading);
        }
        .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-variant); color: #fff; }
        
        main { max-width: 1200px; margin: 0 auto; padding: 20px; padding-bottom: 100px; }
        
        .hero-banner { 
            width: 100%; 
            aspect-ratio: 2/1; 
            cursor: pointer; 
            border-radius: 15px; 
            overflow: hidden; 
            border: 2px solid var(--border-medium); 
            margin-bottom: 20px;
        }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-section { 
            background: linear-gradient(45deg, #B8860B, #FFD700); 
            padding: 20px; 
            border-radius: 15px; 
            text-align: center; 
            margin-bottom: 30px; 
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
        }
        .jackpot-label { color: var(--bg-main); font-weight: 800; font-family: var(--font-heading); font-size: 20px; text-transform: uppercase; }
        .jackpot-amount { 
            font-size: 40px; 
            font-weight: 800; 
            color: #000; 
            font-family: 'Courier New', monospace; 
            display: block; 
            margin: 10px 0;
        }

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

        .section-title { 
            font-family: var(--font-heading); 
            font-size: 24px; 
            color: var(--primary); 
            margin-bottom: 20px; 
            text-align: center;
            text-transform: uppercase;
            position: relative;
        }
        .section-title::after { 
            content: ''; 
            display: block; 
            width: 60px; 
            height: 3px; 
            background: var(--accent); 
            margin: 10px auto; 
        }

        .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; 
            text-decoration: none; 
            transition: transform 0.3s, box-shadow 0.3s; 
            border: 1px solid var(--border-light);
        }
        .game-card:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0,0,0,0.5); 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; 
            color: var(--text-primary); 
            font-family: var(--font-heading); 
            white-space: nowrap; 
            overflow: hidden; 
            text-overflow: ellipsis; 
        }

        .payment-methods { 
            display: grid; 
            grid-template-columns: repeat(4, 1fr); 
            gap: 10px; 
            margin-bottom: 40px; 
            text-align: center;
        }
        .payment-item { 
            background: var(--bg-surface); 
            padding: 15px; 
            border-radius: 10px; 
            border: 1px solid var(--border-light); 
            color: var(--text-secondary);
            font-size: 14px;
        }
        .payment-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; 
            margin-bottom: 40px; 
        }
        .guide-card { 
            background: var(--bg-surface); 
            padding: 20px; 
            border-radius: 15px; 
            border: 1px solid var(--border-medium); 
        }
        .guide-card h3 { color: var(--primary); margin-bottom: 10px; font-size: 18px; }
        .guide-card p { color: var(--text-secondary); font-size: 14px; text-align: justify; }

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

        .provider-wall { 
            display: grid; 
            grid-template-columns: 1fr 1fr; 
            gap: 10px; 
            margin-bottom: 40px; 
        }
        .provider-box { 
            padding: 20px; 
            border-radius: 10px; 
            text-align: center; 
            font-weight: bold; 
            font-family: var(--font-heading); 
            text-transform: uppercase; 
            color: #000; 
        }
        .prov-1 { background: var(--primary); }
        .prov-2 { background: var(--secondary); }
        .prov-3 { background: var(--accent); color: #fff; }
        .prov-4 { background: var(--info); }
        .prov-5 { background: var(--success); }
        .prov-6 { background: var(--warning); }
        .prov-7 { background: var(--primary-variant); color: #fff; }
        .prov-8 { background: var(--text-highlight); }

        .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: 15px; 
            border: 1px solid var(--border-light); 
            position: relative;
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--primary); }
        .review-name { font-weight: bold; color: var(--text-primary); }
        .review-stars { color: var(--primary); font-size: 12px; margin-bottom: 10px; }
        .review-text { color: var(--text-secondary); font-size: 14px; font-style: italic; margin-bottom: 10px; }
        .review-date { font-size: 12px; color: var(--text-muted); text-align: right; display: block; }

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

        .security-section { 
            background: var(--bg-surface); 
            padding: 30px; 
            border-radius: 20px; 
            text-align: center; 
            border: 1px solid var(--border-medium);
        }
        .security-badges { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-bottom: 20px; }
        .badge { color: var(--primary); font-size: 14px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
        .badge i { font-size: 40px; }
        .security-text { color: var(--text-secondary); font-size: 14px; max-width: 800px; margin: 0 auto 20px; }
        .security-text a { color: var(--accent); text-decoration: underline; }

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

        footer { 
            background: var(--bg-surface); 
            padding: 40px 20px; 
            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(--primary); text-decoration: none; font-size: 14px; }
        .footer-links { 
            display: grid; 
            grid-template-columns: repeat(3, 1fr); 
            gap: 10px; 
            max-width: 900px; 
            margin: 0 auto 30px; 
            text-align: left;
        }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 14px; transition: 0.3s; }
        .footer-links a:hover { color: var(--primary); }
        .footer-copy { color: var(--text-muted); font-size: 13px; border-top: 1px solid var(--border-light); padding-top: 20px; }

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