:root {
            --primary: #FFD700;
            --primary-dark: #C5A000;
            --secondary: #B22222;
            --accent: #00FF41;
            --bg-main: #0F0F0F;
            --bg-surface: #1A1A1A;
            --bg-elevated: #2C2C2C;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-disabled: #666666;
            --border-default: #333333;
            --border-highlight: #FFD700;
            --success: #00C853;
            --error: #FF5252;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
        body { 
            background-color: var(--bg-main); 
            color: var(--text-primary); 
            font-family: 'Roboto', 'Open Sans', Arial, sans-serif; 
            line-height: 1.5; 
            padding-bottom: 80px;
        }
        h1, h2, h3 { font-family: 'Montserrat', 'Segoe UI', Roboto, sans-serif; font-weight: 700; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        
        header {
            background: var(--bg-surface);
            border-bottom: 2px solid var(--primary);
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        header .logo-box { display: flex; align-items: center; gap: 10px; }
        header .logo-box img { width: 25px; height: 25px; object-fit: contain; }
        header .logo-box strong { font-size: 16px; font-weight: normal; color: var(--primary); }
        header .auth-buttons { display: flex; gap: 10px; }
        .btn-auth { 
            padding: 8px 16px; 
            border-radius: 5px; 
            font-weight: 600; 
            cursor: pointer; 
            border: none; 
            font-size: 14px; 
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--primary); color: var(--bg-main); }

        main { max-width: 1200px; margin: 0 auto; padding: 15px; }
        
        .hero-banner { 
            width: 100%; 
            aspect-ratio: 2/1; 
            cursor: pointer; 
            border-radius: 12px; 
            overflow: hidden; 
            margin-bottom: 20px;
            border: 1px solid var(--border-default);
        }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-section {
            background: linear-gradient(135deg, #B22222, #800000);
            padding: 20px;
            text-align: center;
            border-radius: 12px;
            margin-bottom: 20px;
            border: 2px solid var(--primary);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
        }
        .jackpot-title { font-size: 18px; color: var(--primary); text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-value { 
            font-size: 32px; 
            font-weight: 800; 
            color: #fff; 
            margin: 10px 0; 
            font-family: 'Courier New', monospace;
            text-shadow: 0 0 10px var(--primary);
        }

        .intro-card {
            background: var(--bg-surface);
            padding: 25px;
            border-radius: 15px;
            border-left: 5px solid var(--primary);
            margin-bottom: 30px;
        }
        .intro-card h1 { font-size: 24px; margin-bottom: 15px; color: var(--primary); line-height: 1.3; }
        .intro-card p { color: var(--text-secondary); font-size: 16px; }

        .section-title { 
            font-size: 22px; 
            margin: 30px 0 20px; 
            display: flex; 
            align-items: center; 
            gap: 10px; 
            color: var(--primary); 
        }
        .section-title::after { content: ""; flex: 1; height: 1px; background: var(--border-default); }

        .game-grid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 15px; 
        }
        .game-card { 
            background: var(--bg-surface); 
            border-radius: 10px; 
            overflow: hidden; 
            border: 1px solid var(--border-default); 
            transition: 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: 15px; text-align: center; color: var(--text-primary); }

        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-bottom: 30px;
        }
        .payment-item {
            background: var(--bg-surface);
            padding: 15px 5px;
            text-align: center;
            border-radius: 8px;
            font-size: 12px;
            color: var(--text-secondary);
            border: 1px solid var(--border-default);
        }
        .payment-item i { display: block; font-size: 20px; color: var(--primary); margin-bottom: 8px; }

        .guides-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        .guide-card {
            background: var(--bg-elevated);
            padding: 20px;
            border-radius: 12px;
        }
        .guide-card h3 { color: var(--primary); 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: 10px;
            overflow: hidden;
            margin-bottom: 30px;
        }
        .lottery-table th, .lottery-table td { 
            padding: 12px; 
            text-align: left; 
            border-bottom: 1px solid var(--border-default); 
            font-size: 14px; 
        }
        .lottery-table th { background: var(--bg-elevated); color: var(--primary); }
        .win-amount { color: var(--accent); font-weight: bold; }

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

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

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

        .security-footer {
            background: var(--bg-surface);
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--border-default);
        }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; flex-wrap: wrap; }
        .badge { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-primary); }
        .badge i { color: var(--success); }
        .security-footer p { font-size: 13px; color: var(--text-secondary); margin-bottom: 10px; }
        .security-footer a { color: var(--primary); 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 { text-align: center; flex: 1; color: var(--text-secondary); font-size: 12px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }

        footer {
            background: var(--bg-surface);
            padding: 40px 20px 100px;
            border-top: 1px solid var(--border-default);
            text-align: center;
        }
        .footer-contact { margin-bottom: 30px; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
        .footer-contact a { color: var(--text-secondary); font-size: 14px; }
        .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); }
        .copyright { font-size: 13px; color: var(--text-disabled); border-top: 1px solid var(--border-default); padding-top: 20px; }

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