:root {
            --primary: #FFD700;
            --primary-hover: #FFC107;
            --secondary: #C0C0C0;
            --accent: #FF0000;
            --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-disabled: #666666;
            --text-inverse: #000000;
            --success: #28A745;
            --error: #DC3545;
            --warning: #FFC107;
            --info: #17A2B8;
            --border-default: #333333;
            --border-highlight: #FFD700;
            --border-muted: #222222;
            --font-heading: 'Montserrat', sans-serif;
            --font-body: 'Roboto', 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;
        }

        header {
            background: linear-gradient(to right, var(--grad-start), var(--grad-end));
            border-bottom: 2px solid var(--border-highlight);
            padding: 0 20px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        header .logo-area { display: flex; align-items: center; gap: 10px; }
        header .logo-area img { width: 25px; height: 25px; object-fit: contain; }
        header .logo-area strong { font-size: 16px; font-weight: normal; color: var(--text-primary); }
        header .auth-buttons { display: flex; gap: 10px; }
        header .btn { 
            padding: 8px 16px; 
            border-radius: 5px; 
            cursor: pointer; 
            font-weight: 600; 
            font-family: var(--font-heading); 
            transition: 0.3s; 
            border: none; 
            font-size: 14px;
        }
        header .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-highlight); }
        header .btn-login:hover { background: var(--border-highlight); color: var(--text-inverse); }
        header .btn-register { background: var(--primary); color: var(--text-inverse); }
        header .btn-register:hover { background: var(--primary-hover); }

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

        .jackpot-section { 
            background: var(--bg-surface); 
            border: 2px solid var(--primary); 
            border-radius: 15px; 
            text-align: center; 
            padding: 20px; 
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
        }
        .jackpot-title { color: var(--primary); font-family: var(--font-heading); font-size: 20px; margin-bottom: 10px; text-transform: uppercase; }
        .jackpot-amount { font-size: 40px; font-weight: bold; color: #fff; font-family: 'Courier New', monospace; text-shadow: 0 0 10px var(--primary); }

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

        .section-title { 
            font-family: var(--font-heading); 
            font-size: 24px; 
            color: var(--text-primary); 
            margin-bottom: 20px; 
            display: flex; 
            align-items: center; 
            gap: 10px; 
        }
        .section-title::before { content: ''; width: 4px; height: 24px; background: var(--primary); display: inline-block; }

        .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, border 0.3s; 
            border: 1px solid var(--border-default);
        }
        .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; 
            color: var(--text-primary); 
            text-align: center; 
            font-family: var(--font-heading); 
            white-space: nowrap; 
            overflow: hidden; 
            text-overflow: ellipsis; 
        }

        .payment-licenses { 
            display: grid; 
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); 
            gap: 15px; 
            margin-bottom: 40px; 
        }
        .pl-item { 
            background: var(--bg-surface); 
            padding: 15px; 
            border-radius: 10px; 
            text-align: center; 
            border: 1px solid var(--border-muted);
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            gap: 8px; 
            font-size: 14px; 
            color: var(--text-secondary);
        }
        .pl-item i { color: var(--primary); font-size: 24px; }

        .guide-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: 12px; 
            border: 1px solid var(--border-default); 
        }
        .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: 12px; 
            overflow: hidden; 
            margin-bottom: 40px; 
        }
        .win-table { width: 100%; border-collapse: collapse; }
        .win-table th { background: #252525; color: var(--primary); padding: 12px; text-align: left; font-size: 14px; }
        .win-table td { padding: 12px; border-bottom: 1px solid var(--border-muted); font-size: 14px; color: var(--text-secondary); }
        .win-table .amount { color: var(--success); font-weight: bold; }

        .provider-wall { 
            display: grid; 
            grid-template-columns: 1fr 1fr; 
            gap: 15px; 
            margin-bottom: 40px; 
        }
        .provider-box { 
            padding: 15px; 
            border-radius: 8px; 
            font-weight: bold; 
            text-align: center; 
            color: #000; 
            font-family: var(--font-heading); 
            text-transform: uppercase;
        }
        .prov-1 { background: var(--primary); }
        .prov-2 { background: var(--secondary); }

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

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

        .security-footer { 
            background: var(--bg-surface); 
            padding: 30px; 
            border-radius: 15px; 
            text-align: center; 
            border: 1px solid var(--border-muted); 
            margin-bottom: 40px; 
        }
        .sec-icons { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-bottom: 20px; }
        .sec-item { display: flex; align-items: center; gap: 8px; color: var(--text-secondary); font-size: 14px; }
        .sec-item i { color: var(--success); }
        .sec-warning { color: var(--accent); font-weight: bold; margin-bottom: 15px; display: block; }
        .sec-links a { color: var(--primary); text-decoration: none; margin: 0 10px; font-size: 14px; }

        .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; 
        }
        .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; }
        .nav-item:hover { color: var(--primary); }

        footer { 
            background: var(--grad-end); 
            padding: 40px 20px; 
            border-top: 1px solid var(--border-muted); 
            text-align: center; 
        }
        footer .contact-area { margin-bottom: 30px; }
        footer .contact-area p { color: var(--text-secondary); margin-bottom: 15px; }
        footer .contact-links { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
        footer .contact-links a { color: var(--text-primary); text-decoration: none; font-size: 14px; }
        footer .footer-cols { 
            display: grid; 
            grid-template-columns: repeat(3, 1fr); 
            gap: 20px; 
            text-align: left; 
            max-width: 800px; 
            margin: 0 auto 30px; 
        }
        footer .col { display: flex; flex-direction: column; gap: 8px; }
        footer .col a { color: var(--text-secondary); text-decoration: none; font-size: 14px; }
        footer .col a:hover { color: var(--primary); }
        footer .copyright { color: var(--text-disabled); font-size: 13px; margin-top: 20px; }

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