:root {
            --primary: #FFD700;
            --primary-dark: #C5A000;
            --secondary: #E60012;
            --accent: #00FFAB;
            --bg-main: #0B0E11;
            --bg-surface: #1B1F24;
            --bg-surface-light: #2C323B;
            --bg-overlay: rgba(0, 0, 0, 0.7);
            --text-primary: #FFFFFF;
            --text-secondary: #B7BDC6;
            --text-muted: #707A8A;
            --text-inverse: #0B0E11;
            --success: #00C853;
            --warning: #FFAB00;
            --error: #FF5252;
            --info: #2196F3;
            --border-default: #363C44;
            --border-highlight: #FFD700;
            --border-subtle: #262B32;
            --font-heading: 'Montserrat', sans-serif;
            --font-body: 'Roboto', sans-serif;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        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-color: var(--bg-surface);
            border-bottom: 2px solid var(--primary);
            padding: 0 20px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        header .brand { display: flex; align-items: center; gap: 10px; }
        header .brand img { width: 25px; height: 25px; object-fit: contain; }
        header .brand strong { font-size: 16px; font-weight: normal; color: var(--primary); }
        header .auth-btns { display: flex; gap: 10px; }
        header .btn { 
            padding: 8px 16px; 
            border-radius: 4px; 
            cursor: pointer; 
            font-weight: 600; 
            font-size: 14px; 
            border: none; 
            transition: 0.3s;
        }
        header .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--primary); }
        header .btn-login:hover { background: var(--primary); color: var(--text-inverse); }
        header .btn-register { background: var(--primary); color: var(--text-inverse); }
        header .btn-register:hover { background: var(--primary-dark); }

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

        .jackpot-section {
            background: linear-gradient(135deg, var(--bg-surface), #2c2300);
            border: 2px solid var(--primary);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            margin-bottom: 25px;
            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-family: 'JetBrains Mono', monospace; 
            font-size: 42px; 
            font-weight: bold; 
            color: #fff; 
            text-shadow: 0 0 10px var(--primary);
            display: block;
        }

        .intro-card {
            background: var(--bg-surface);
            border-radius: 12px;
            padding: 25px;
            border-left: 5px solid var(--primary);
            margin-bottom: 30px;
        }
        .intro-card h1 { 
            font-family: var(--font-heading); 
            font-size: 28px; 
            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(--primary); 
            margin-bottom: 20px; 
            display: flex; 
            align-items: center; 
            gap: 10px; 
        }
        .section-title::after { content: ""; flex: 1; height: 1px; background: var(--border-default); }

        .game-grid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 15px; 
            margin-bottom: 40px; 
        }
        .game-card { 
            background: var(--bg-surface); 
            border-radius: 10px; 
            text-decoration: none; 
            transition: 0.3s; 
            border: 1px solid var(--border-subtle); 
            overflow: hidden; 
        }
        .game-card:hover { transform: translateY(-5px); border-color: var(--primary); }
        .game-card img { 
            width: 100%; 
            aspect-ratio: 1/1; 
            object-fit: cover; 
            display: block; 
        }
        .game-card h3 { 
            padding: 12px; 
            font-size: 16px; 
            color: var(--text-primary); 
            text-align: center; 
            font-weight: 500;
        }

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

        .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: 10px; 
            border: 1px solid var(--border-subtle); 
        }
        .guide-item h3 { color: var(--primary); margin-bottom: 10px; font-size: 18px; }
        .guide-item p { color: var(--text-secondary); font-size: 14px; }

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

        .provider-wall { 
            display: grid; 
            grid-template-columns: 1fr 1fr; 
            gap: 10px; 
            margin-bottom: 40px; 
        }
        .provider-box { 
            padding: 15px; 
            border-radius: 5px; 
            text-align: center; 
            font-weight: bold; 
            background: var(--bg-surface-light); 
            border: 1px solid var(--border-default);
            color: var(--text-secondary);
        }
        .provider-box:nth-child(odd) { border-left: 4px solid var(--primary); }
        .provider-box:nth-child(even) { border-left: 4px solid var(--secondary); }

        .comment-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
            gap: 20px; 
            margin-bottom: 40px; 
        }
        .comment-card { 
            background: var(--bg-surface); 
            padding: 20px; 
            border-radius: 12px; 
            border: 1px solid var(--border-subtle); 
        }
        .comment-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
        .comment-header i { font-size: 30px; color: var(--primary); }
        .comment-header .user-info { display: flex; flex-direction: column; }
        .comment-header .username { font-weight: bold; font-size: 15px; }
        .comment-header .stars { color: #FFD700; font-size: 12px; }
        .comment-body { color: var(--text-secondary); font-size: 14px; margin-bottom: 10px; }
        .comment-date { font-size: 12px; color: var(--text-muted); }

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

        .security-footer { 
            background: var(--bg-surface); 
            border-radius: 15px; 
            padding: 30px; 
            text-align: center; 
            margin-bottom: 40px; 
            border: 1px solid var(--border-subtle);
        }
        .security-footer .badges { 
            display: flex; 
            justify-content: center; 
            gap: 30px; 
            flex-wrap: wrap; 
            margin-bottom: 20px; 
        }
        .badge { display: flex; align-items: center; gap: 8px; font-weight: 600; color: var(--text-secondary); }
        .badge i { color: var(--accent); }
        .security-footer p { font-size: 14px; color: var(--text-muted); margin-bottom: 10px; }
        .security-footer a { color: var(--primary); text-decoration: none; }

        .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; 
            align-items: center; 
            height: 65px; 
            z-index: 2000; 
        }
        .nav-item { 
            text-decoration: none; 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            color: var(--text-secondary); 
            font-size: 12px; 
            gap: 5px; 
        }
        .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-default); 
            text-align: center; 
        }
        footer .contact-links { 
            display: flex; 
            justify-content: center; 
            gap: 20px; 
            margin-bottom: 30px; 
            flex-wrap: wrap; 
        }
        footer .contact-links a { color: var(--text-secondary); text-decoration: none; font-size: 14px; transition: 0.3s; }
        footer .contact-links a:hover { color: var(--primary); }
        
        footer .footer-cols { 
            display: grid; 
            grid-template-columns: repeat(3, 1fr); 
            gap: 20px; 
            max-width: 800px; 
            margin: 0 auto 30px; 
            text-align: left; 
        }
        footer .footer-cols a { 
            display: block; 
            color: var(--text-muted); 
            text-decoration: none; 
            font-size: 14px; 
            margin-bottom: 8px; 
        }
        footer .footer-cols a:hover { color: var(--primary); }
        footer .copyright { 
            font-size: 13px; 
            color: var(--text-muted); 
            border-top: 1px solid var(--border-subtle); 
            padding-top: 20px; 
        }

        @media (max-width: 768px) {
            .footer-cols { grid-template-columns: repeat(2, 1fr); }
            .jackpot-amount { font-size: 32px; }
        }