:root {
            --primary: #FFD700;
            --primary-hover: #FFC107;
            --secondary: #C0C0C0;
            --accent: #FF4500;
            --bg-main: #0B0E11;
            --bg-surface: #1A1D23;
            --bg-elevated: #2C313A;
            --overlay: rgba(0, 0, 0, 0.7);
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --text-muted: #70757A;
            --text-inverse: #000000;
            --success: #00C853;
            --warning: #FFAB00;
            --error: #FF5252;
            --info: #2196F3;
            --border-subtle: #363C44;
            --border-medium: #4A515B;
            --border-strong: #FFD700;
            --font-primary: 'Inter', 'Roboto', sans-serif;
            --font-heading: 'Montserrat', sans-serif;
            --font-mono: 'JetBrains Mono', monospace;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { 
            background-color: var(--bg-main); 
            color: var(--text-primary); 
            font-family: var(--font-primary); 
            line-height: 1.5; 
            padding-bottom: 80px;
        }
        h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }

        header {
            background-color: var(--bg-surface);
            border-bottom: 2px solid var(--border-strong);
            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 img { width: 25px; height: 25px; object-fit: contain; }
        header strong { font-size: 16px; font-weight: normal; color: var(--primary); }
        header .auth-buttons { display: flex; gap: 10px; }
        .btn-auth { 
            padding: 6px 16px; 
            border-radius: 4px; 
            font-size: 14px; 
            cursor: pointer; 
            font-weight: 600; 
            border: none; 
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .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: 12px; 
            margin-bottom: 20px; 
            cursor: pointer;
            border: 1px solid var(--border-medium);
        }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-box {
            background: linear-gradient(45deg, #1a1d23, #2c313a);
            border: 2px solid var(--primary);
            border-radius: 15px;
            text-align: center;
            padding: 20px;
            margin-bottom: 25px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-title { color: var(--secondary); font-size: 14px; text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount { 
            font-family: var(--font-mono); 
            font-size: 32px; 
            color: var(--primary); 
            font-weight: bold; 
            display: block;
        }

        .intro-card {
            background: var(--bg-surface);
            padding: 30px;
            border-radius: 16px;
            border-left: 5px solid var(--primary);
            margin-bottom: 30px;
        }
        .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 { margin-bottom: 40px; }
        section h2 { 
            font-size: 22px; 
            margin-bottom: 20px; 
            display: flex; 
            align-items: center; 
            gap: 10px; 
            color: var(--primary);
        }
        section h2::before { content: ""; width: 4px; height: 20px; background: var(--primary); display: inline-block; }

        .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-subtle); 
            transition: transform 0.2s;
        }
        .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: 15px; text-align: center; color: var(--text-primary); }

        .payment-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); 
            gap: 10px; 
        }
        .payment-item { 
            background: var(--bg-elevated); 
            padding: 15px; 
            border-radius: 8px; 
            text-align: center; 
            font-size: 13px; 
            color: var(--text-secondary);
            border: 1px solid var(--border-subtle);
        }
        .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; 
        }
        .guide-card { 
            background: var(--bg-surface); 
            padding: 20px; 
            border-radius: 12px; 
            border: 1px solid var(--border-subtle); 
        }
        .guide-card h3 { font-size: 18px; color: var(--primary); margin-bottom: 10px; }
        .guide-card p { font-size: 14px; color: var(--text-secondary); }

        .lottery-table { 
            width: 100%; 
            border-collapse: collapse; 
            background: var(--bg-surface); 
            border-radius: 12px; 
            overflow: hidden; 
        }
        .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-elevated); color: var(--primary); }
        .win-amount { color: var(--success); font-weight: bold; }

        .providers-wall { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 10px; 
        }
        .provider-box { 
            padding: 15px; 
            border-radius: 8px; 
            text-align: center; 
            font-weight: bold; 
            background: var(--bg-elevated); 
            border: 1px solid var(--border-medium);
        }
        .provider-box:nth-child(odd) { border-left: 4px solid var(--primary); }
        .provider-box:nth-child(even) { border-right: 4px solid var(--accent); }

        .comment-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
            gap: 20px; 
        }
        .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: 10px; margin-bottom: 10px; }
        .comment-header i { font-size: 30px; color: var(--primary); }
        .comment-user { font-weight: bold; }
        .comment-stars { color: #FFC107; font-size: 12px; margin-bottom: 10px; }
        .comment-text { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; }
        .comment-date { font-size: 12px; color: var(--text-muted); }

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

        .security-box { 
            background: var(--bg-surface); 
            padding: 25px; 
            border-radius: 16px; 
            text-align: center; 
            border: 1px dashed var(--primary); 
        }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; flex-wrap: wrap; }
        .badge { color: var(--primary); font-size: 14px; display: flex; align-items: center; gap: 5px; }
        .security-text { font-size: 13px; color: var(--text-secondary); margin-bottom: 10px; }

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

        footer { 
            background: var(--bg-surface); 
            padding: 40px 20px; 
            border-top: 1px solid var(--border-subtle); 
            text-align: center; 
        }
        .footer-contact { margin-bottom: 30px; }
        .footer-contact p { margin-bottom: 15px; font-weight: bold; color: var(--primary); }
        .contact-links { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
        .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 { font-size: 13px; color: var(--text-secondary); }
        .footer-links a:hover { color: var(--primary); }
        .copyright { font-size: 13px; color: var(--text-muted); margin-top: 20px; }

        @media (max-width: 768px) {
            .footer-links { grid-template-columns: repeat(2, 1fr); }
        }