:root {
            --primary: #FFD700;
            --primary-variant: #B8860B;
            --secondary: #1E40AF;
            --accent: #FF4D4D;
            --bg-default: #0A0B0D;
            --bg-paper: #14171C;
            --bg-surface: #1E2229;
            --text-primary: #FFFFFF;
            --text-secondary: #94A3B8;
            --text-muted: #64748B;
            --border-default: #2D3748;
            --border-brand: #D4AF37;
            --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
            --font-heading: 'Montserrat', 'Inter', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-default);
            color: var(--text-primary);
            font-family: var(--font-main);
            line-height: 1.5;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; color: var(--primary); }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        img { max-width: 100%; height: auto; display: block; }

        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--bg-paper);
            border-bottom: 1px solid var(--border-default);
            padding: 12px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--primary); text-transform: uppercase; }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
        }
        .btn-login { background: transparent; border: 1px solid var(--primary); color: var(--primary); }
        .btn-register { background: var(--primary); color: var(--bg-default); }

        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; background: var(--bg-surface); }
        .banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-container {
            background: linear-gradient(135deg, var(--bg-paper), var(--secondary));
            margin: 20px 16px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 2px solid var(--border-brand);
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-label { color: var(--text-primary); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
        .jackpot-amount { 
            font-size: 36px; 
            font-weight: 900; 
            color: var(--primary); 
            font-family: var(--font-heading);
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }

        .intro-card { margin: 20px 16px; padding: 20px; background: var(--bg-paper); border-radius: 12px; }
        .intro-card h1 { font-size: 24px; margin-bottom: 12px; }
        .intro-card p { color: var(--text-secondary); font-size: 14px; text-align: justify; }

        .section-title { padding: 0 16px; margin-bottom: 15px; font-size: 20px; display: flex; align-items: center; gap: 8px; }
        .game-grid { 
            display: grid; 
            grid-template-columns: 1fr 1fr; 
            gap: 12px; 
            padding: 0 16px; 
            margin-bottom: 30px;
        }
        .game-card { 
            background: var(--bg-surface); 
            border-radius: 10px; 
            overflow: hidden; 
            border: 1px solid var(--border-default);
        }
        .game-image { aspect-ratio: 1/1; overflow: hidden; position: relative; }
        .game-image img { width: 100%; height: 100%; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 12px; color: var(--text-muted); }

        .payment-methods { 
            background: var(--bg-paper); 
            padding: 25px 16px; 
            margin: 30px 0; 
            text-align: center; 
        }
        .payment-grid { 
            display: grid; 
            grid-template-columns: repeat(4, 1fr); 
            gap: 15px; 
            justify-items: center; 
            margin-top: 20px;
        }
        .payment-icon { 
            width: 50px; 
            height: 30px; 
            background: #fff; 
            border-radius: 4px; 
            display: flex; 
            align-items: center; 
            justify-content: center;
            font-size: 10px;
            color: #000;
            font-weight: bold;
        }

        .guidelines { padding: 0 16px; margin-bottom: 30px; }
        .guide-item { 
            background: var(--bg-surface); 
            padding: 15px; 
            border-radius: 12px; 
            margin-bottom: 15px; 
            border-left: 4px solid var(--primary);
        }
        .guide-item h2 { font-size: 18px; margin-bottom: 8px; }
        .guide-item p { font-size: 13px; color: var(--text-secondary); }

        .marquee-container {
            background: var(--bg-paper);
            padding: 15px 0;
            margin: 30px 0;
            overflow: hidden;
            white-space: nowrap;
        }
        .marquee-content {
            display: inline-block;
            animation: scroll-left 40s linear infinite;
        }
        @keyframes scroll-left {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .winning-record {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--bg-surface);
            padding: 8px 15px;
            border-radius: 20px;
            margin: 0 10px;
            font-size: 13px;
        }
        .win-user { color: var(--primary); font-weight: bold; }
        .win-amount { color: var(--semantic-success, #22C55E); font-weight: bold; }

        .providers-wall { padding: 20px 16px; text-align: center; }
        .providers-flex { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 15px; }
        .provider-tag { padding: 6px 12px; background: var(--bg-surface); border-radius: 4px; font-size: 13px; color: var(--text-secondary); }

        .reviews { padding: 0 16px; margin-bottom: 30px; }
        .review-card { background: var(--bg-paper); padding: 15px; border-radius: 12px; margin-bottom: 15px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-avatar { width: 40px; height: 40px; background: var(--bg-surface); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--primary); }
        .review-meta h3 { font-size: 14px; color: var(--text-primary); }
        .stars { color: var(--primary); font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-secondary); font-style: italic; }

        .faq-section { padding: 0 16px; margin-bottom: 30px; }
        .faq-item { background: var(--bg-surface); padding: 15px; border-radius: 8px; margin-bottom: 10px; }
        .faq-item h3 { font-size: 16px; margin-bottom: 8px; color: var(--primary); }
        .faq-item p { font-size: 13px; color: var(--text-secondary); }

        .security-section { text-align: center; padding: 30px 16px; background: var(--bg-paper); margin-bottom: 20px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-top: 15px; font-size: 24px; color: var(--text-muted); }
        .age-limit { color: var(--accent); font-weight: bold; font-size: 20px; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-paper);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: var(--text-secondary); }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: var(--primary); }

        footer { background: var(--bg-default); padding: 30px 16px; border-top: 1px solid var(--border-default); }
        .footer-contacts { display: flex; flex-direction: column; gap: 10px; margin-bottom: 30px; }
        .footer-contacts a { font-size: 14px; color: var(--text-secondary); }
        .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-grid a { font-size: 13px; color: var(--text-muted); }
        .footer-copy { text-align: center; font-size: 12px; color: var(--text-muted); padding-top: 20px; border-top: 1px solid var(--border-default); }