:root {
            --primary: #FFD700;
            --primary-hover: #FFC107;
            --secondary: #C0C0C0;
            --accent: #FF4500;
            --bg-main: #0B0B0B;
            --bg-surface: #1A1A1A;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --grad-start: #1A1A1A;
            --grad-end: #000000;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #666666;
            --text-inverse: #000000;
            --success: #00C853;
            --warning: #FFAB00;
            --error: #FF1744;
            --info: #2979FF;
            --border-def: #333333;
            --border-high: #FFD700;
            --border-sub: #262626;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { 
            background-color: var(--bg-main); 
            background: linear-gradient(to bottom, var(--grad-start), var(--grad-end));
            color: var(--text-primary); 
            font-family: 'Roboto', sans-serif; 
            line-height: 1.5; 
            overflow-x: hidden; 
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }

        header { 
            background: 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(--border-high);
        }
        header .logo-box { display: flex; align-items: center; gap: 10px; }
        header .logo-box img { width: 25px; height: 25px; }
        header .logo-box strong { font-size: 16px; font-weight: normal; color: var(--primary); }
        header .auth-btns { display: flex; gap: 10px; }
        .btn { 
            padding: 8px 16px; 
            border-radius: 5px; 
            cursor: pointer; 
            font-weight: 600; 
            font-family: 'Oswald', sans-serif; 
            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(--text-inverse); }
        .btn-register { background: var(--primary); color: var(--text-inverse); }
        .btn-register:hover { background: var(--primary-hover); }

        main { max-width: 1200px; margin: 0 auto; padding: 20px; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; border-radius: 15px; margin-bottom: 20px; cursor: pointer; box-shadow: 0 0 20px rgba(255, 215, 0, 0.2); }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-section { 
            background: var(--bg-surface); 
            text-align: center; 
            padding: 20px; 
            border-radius: 15px; 
            border: 1px solid var(--border-def); 
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
        }
        .jackpot-title { font-family: 'Oswald', sans-serif; color: var(--primary); font-size: 1.2rem; text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount { font-size: 2.5rem; font-weight: bold; color: #fff; text-shadow: 0 0 10px var(--primary); font-family: 'Oswald', sans-serif; }

        .intro-card { 
            background: linear-gradient(135deg, var(--bg-surface), #2a2a2a); 
            padding: 30px; 
            border-radius: 20px; 
            border-left: 5px solid var(--primary); 
            margin-bottom: 40px; 
        }
        .intro-card h1 { font-size: 24px; color: var(--primary); margin-bottom: 15px; line-height: 1.3; }
        .intro-card p { color: var(--text-secondary); font-size: 16px; }

        .section-title { text-align: center; margin: 40px 0 20px; font-size: 28px; color: var(--primary); 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; }
        .game-card { 
            background: var(--bg-surface); 
            border-radius: 12px; 
            overflow: hidden; 
            border: 1px solid var(--border-sub); 
            transition: 0.3s; 
            text-align: center;
        }
        .game-card:hover { transform: translateY(-5px); border-color: var(--primary); box-shadow: 0 5px 15px rgba(0,0,0,0.5); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { padding: 12px; font-size: 16px; color: var(--text-primary); }

        .payment-methods { 
            display: grid; 
            grid-template-columns: repeat(4, 1fr); 
            gap: 10px; 
            margin: 30px 0; 
            text-align: center;
        }
        .payment-item { 
            background: var(--bg-surface); 
            padding: 15px; 
            border-radius: 10px; 
            border: 1px solid var(--border-sub); 
            font-size: 14px; 
            color: var(--text-secondary);
        }
        .payment-item i { display: block; font-size: 24px; color: var(--primary); margin-bottom: 8px; }

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

        .win-records { 
            background: var(--bg-surface); 
            border-radius: 15px; 
            overflow: hidden; 
            border: 1px solid var(--border-def); 
            margin-bottom: 40px;
        }
        .win-table { width: 100%; border-collapse: collapse; text-align: center; }
        .win-table th { background: var(--border-sub); color: var(--primary); padding: 12px; font-size: 14px; }
        .win-table td { padding: 10px; border-bottom: 1px solid var(--border-sub); font-size: 14px; color: var(--text-secondary); }
        .win-table .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: 15px; 
            text-align: center; 
            font-weight: bold; 
            border-radius: 8px; 
            font-family: 'Oswald', sans-serif; 
            text-transform: uppercase;
        }
        .prov-1 { background: #e74c3c; color: white; }
        .prov-2 { background: #3498db; color: white; }
        .prov-3 { background: #f1c40f; color: black; }
        .prov-4 { background: #2ecc71; color: white; }
        .prov-5 { background: #9b59b6; color: white; }
        .prov-6 { background: #e67e22; color: white; }
        .prov-7 { background: #1abc9c; color: white; }
        .prov-8 { background: #34495e; color: white; }

        .reviews-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-sub); }
        .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--primary); }
        .review-header .user-info { display: flex; flex-direction: column; }
        .review-header .user-name { font-weight: bold; }
        .review-header .stars { color: var(--primary); font-size: 12px; }
        .review-content { color: var(--text-secondary); font-size: 14px; margin-bottom: 10px; font-style: italic; }
        .review-date { font-size: 12px; color: var(--text-muted); }

        .faq-section { display: grid; gap: 15px; margin-bottom: 40px; }
        .faq-item { background: var(--bg-surface); padding: 20px; border-radius: 10px; border: 1px solid var(--border-sub); }
        .faq-item h3 { color: var(--primary); font-size: 17px; margin-bottom: 10px; }
        .faq-item p { color: var(--text-secondary); font-size: 14px; }

        .security-box { 
            text-align: center; 
            padding: 30px; 
            background: var(--bg-surface); 
            border-radius: 15px; 
            border: 1px solid var(--border-def); 
            margin-bottom: 40px;
        }
        .security-box .ssl-badge { font-size: 40px; color: var(--success); margin-bottom: 15px; }
        .security-box p { color: var(--text-secondary); font-size: 14px; margin-bottom: 10px; }
        .security-box a { color: var(--primary); font-weight: bold; text-decoration: underline; }

        .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(--border-high); 
            z-index: 1000; 
        }
        .nav-item { text-align: center; color: var(--text-secondary); font-size: 12px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; color: var(--primary); }

        footer { 
            background: var(--bg-surface); 
            padding: 40px 20px 100px; 
            border-top: 1px solid var(--border-def); 
            text-align: center; 
        }
        .footer-contact { margin-bottom: 30px; }
        .footer-contact p { color: var(--primary); margin-bottom: 15px; font-weight: bold; }
        .footer-contact-links { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
        .footer-contact-links a { color: var(--text-secondary); 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 { color: var(--text-secondary); font-size: 13px; }
        .footer-copy { color: var(--text-muted); font-size: 13px; border-top: 1px solid var(--border-sub); 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: repeat(2, 1fr); }
            .jackpot-amount { font-size: 1.8rem; }
        }