:root {
            --primary: #FFD700;
            --primary-hover: #FFC107;
            --secondary: #B8860B;
            --accent: #FF4500;
            --bg-main: #0B0E11;
            --bg-surface: #1E2329;
            --bg-surface-light: #2B3139;
            --bg-overlay: rgba(0, 0, 0, 0.7);
            --text-primary: #FFFFFF;
            --text-secondary: #B7BDC6;
            --text-disabled: #5E6673;
            --text-highlight: #FFD700;
            --success: #0ECB81;
            --warning: #F0B90B;
            --error: #F6465D;
            --info: #3498DB;
            --border-subtle: #363C44;
            --border-strong: #474D57;
            --border-highlight: #FFD700;
            --font-heading: 'Montserrat', 'Segoe UI', Roboto, sans-serif;
            --font-body: 'Inter', 'Open Sans', 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;
            padding-bottom: 80px;
        }
        h1, h2, h3 { font-family: var(--font-heading); color: var(--text-primary); line-height: 1.2; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        .btn { 
            padding: 10px 20px; 
            border-radius: 8px; 
            font-weight: 600; 
            cursor: pointer; 
            border: none; 
            transition: 0.3s; 
            font-family: var(--font-heading);
        }
        .btn-primary { background-color: var(--primary); color: #000; }
        .btn-primary:hover { background-color: var(--primary-hover); }
        .btn-outline { background: transparent; border: 1px solid var(--primary); color: var(--primary); }
        .btn-outline:hover { background: var(--primary); color: #000; }
        
        header { 
            background-color: var(--bg-surface); 
            border-bottom: 1px solid var(--border-subtle); 
            padding: 12px 0; 
            position: sticky; 
            top: 0; 
            z-index: 1000; 
        }
        header .container { 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
        }
        header .brand { display: flex; align-items: center; gap: 10px; }
        header .brand img { width: 25px; height: 25px; }
        header .brand strong { font-size: 16px; font-weight: normal; }
        header .auth-btns { display: flex; gap: 10px; }

        .hero-banner { 
            width: 100%; 
            aspect-ratio: 2/1; 
            cursor: pointer; 
            overflow: hidden; 
            border-bottom: 3px solid var(--primary);
        }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-section { 
            background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-main) 100%);
            text-align: center; 
            padding: 30px 0; 
            border-bottom: 1px solid var(--border-subtle);
        }
        .jackpot-title { font-size: 18px; color: var(--text-secondary); margin-bottom: 10px; text-transform: uppercase; }
        .jackpot-amount { 
            font-family: var(--font-heading); 
            font-size: 40px; 
            font-weight: bold; 
            color: var(--primary); 
            text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
        }

        .intro-card { 
            background-color: var(--bg-surface); 
            border-radius: 20px; 
            padding: 30px; 
            margin: 30px 0; 
            border: 1px solid var(--border-strong); 
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .intro-card h1 { font-size: 30px; margin-bottom: 15px; color: var(--primary); }
        .intro-card p { color: var(--text-secondary); font-size: 16px; }

        .section-title { 
            text-align: center; 
            margin: 40px 0 20px; 
            font-size: 24px; 
            position: relative; 
            padding-bottom: 10px;
        }
        .section-title::after { 
            content: ''; 
            position: absolute; 
            bottom: 0; 
            left: 50%; 
            transform: translateX(-50%); 
            width: 60px; 
            height: 3px; 
            background: var(--primary); 
        }

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

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

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

        .lottery-table { 
            width: 100%; 
            border-collapse: collapse; 
            background: var(--bg-surface); 
            border-radius: 12px; 
            overflow: hidden; 
            margin: 30px 0; 
        }
        .lottery-table th, .lottery-table td { 
            padding: 12px; 
            text-align: center; 
            border-bottom: 1px solid var(--border-subtle); 
        }
        .lottery-table th { background: var(--bg-surface-light); color: var(--primary); }
        .win-amount { color: var(--success); font-weight: bold; }

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

        .reviews-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
            gap: 20px; 
            margin: 30px 0; 
        }
        .review-card { 
            background: var(--bg-surface); 
            padding: 20px; 
            border-radius: 15px; 
            position: relative; 
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--primary); }
        .review-stars { color: var(--primary); margin-bottom: 10px; font-size: 14px; }
        .review-date { font-size: 12px; color: var(--text-disabled); display: block; margin-top: 10px; }

        .faq-section { margin: 40px 0; }
        .faq-item { 
            background: var(--bg-surface); 
            margin-bottom: 10px; 
            border-radius: 10px; 
            padding: 20px; 
            border: 1px solid var(--border-subtle); 
        }
        .faq-item h3 { font-size: 16px; margin-bottom: 10px; color: var(--primary); }
        .faq-item p { color: var(--text-secondary); font-size: 14px; }

        .security-footer { 
            background: var(--bg-surface); 
            padding: 30px; 
            border-radius: 20px; 
            text-align: center; 
            margin: 40px 0; 
            border: 1px solid var(--border-subtle); 
        }
        .security-icons { 
            display: flex; 
            justify-content: center; 
            gap: 30px; 
            flex-wrap: wrap; 
            margin-bottom: 20px; 
        }
        .sec-item { display: flex; flex-direction: column; align-items: center; gap: 5px; font-size: 13px; }
        .sec-item i { font-size: 24px; color: var(--success); }
        .sec-link { color: var(--info); 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: 2000; 
        }
        .nav-item { 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            font-size: 11px; 
            color: var(--text-secondary); 
            gap: 5px; 
        }
        .nav-item i { font-size: 20px; }
        .nav-item:hover { color: var(--primary); }

        footer { 
            background: var(--bg-surface); 
            padding: 40px 0; 
            border-top: 1px solid var(--border-subtle); 
            text-align: center; 
        }
        .footer-contact { 
            display: flex; 
            justify-content: center; 
            gap: 20px; 
            margin-bottom: 30px; 
            flex-wrap: wrap; 
        }
        .footer-links { 
            display: grid; 
            grid-template-columns: repeat(3, 1fr); 
            gap: 10px; 
            text-align: left; 
            max-width: 800px; 
            margin: 0 auto 30px; 
            font-size: 14px; 
            color: var(--text-secondary); 
        }
        .footer-copyright { 
            border-top: 1px solid var(--border-subtle); 
            padding-top: 20px; 
            font-size: 13px; 
            color: var(--text-disabled); 
        }

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