:root {
            --primary: #FFD700;
            --primary-dark: #B8860B;
            --secondary: #C0C0C0;
            --accent: #FF4500;
            --bg-main: #0B0B0B;
            --bg-surface: #1A1A1A;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --grad-start: #1A1A1A;
            --grad-end: #000000;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #666666;
            --text-inverse: #000000;
            --success: #00C851;
            --warning: #FFBB00;
            --error: #FF4444;
            --info: #33B5E5;
            --border-light: #333333;
            --border-medium: #444444;
            --border-strong: #FFD700;
            --font-heading: 'Montserrat', 'Segoe UI', Roboto, sans-serif;
            --font-body: 'Roboto', 'Segoe UI', Arial, sans-serif;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
        body { 
            background-color: var(--bg-main); 
            background: linear-gradient(to bottom, var(--grad-start), var(--grad-end));
            color: var(--text-primary); 
            font-family: var(--font-body); 
            line-height: 1.5;
            overflow-x: hidden;
        }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }

        header {
            background-color: var(--bg-surface);
            border-bottom: 2px solid var(--border-strong);
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            height: 60px;
        }
        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; }
        .btn-auth { 
            padding: 6px 15px; 
            border-radius: 5px; 
            cursor: pointer; 
            font-size: 14px; 
            font-weight: 600; 
            border: none; 
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-login:hover { background: var(--primary); color: var(--text-inverse); }
        .btn-register { background: var(--primary); color: var(--text-inverse); }
        .btn-register:hover { background: var(--primary-dark); }

        main { padding-bottom: 80px; max-width: 1200px; margin: 0 auto; }
        
        .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-container {
            background: var(--bg-surface);
            margin: 20px 15px;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--border-medium);
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-title { color: var(--secondary); font-size: 16px; margin-bottom: 10px; text-transform: uppercase; }
        .jackpot-value { 
            font-family: 'JetBrains Mono', monospace; 
            font-size: 32px; 
            font-weight: 800; 
            color: var(--primary); 
            text-shadow: 0 0 10px var(--primary);
        }

        .intro-card {
            margin: 20px 15px;
            padding: 30px;
            background: linear-gradient(135deg, var(--bg-surface), #252525);
            border-radius: 20px;
            border-left: 5px solid var(--primary);
        }
        .intro-card h1 { 
            font-family: var(--font-heading); 
            font-size: 24px; 
            color: var(--primary); 
            margin-bottom: 15px; 
            line-height: 1.3;
        }
        .intro-card p { color: var(--text-secondary); font-size: 16px; }

        .section-title { 
            text-align: center; 
            font-family: var(--font-heading); 
            font-size: 24px; 
            color: var(--primary); 
            margin: 40px 0 20px;
            position: relative;
        }
        .section-title::after { 
            content: ''; 
            display: block; 
            width: 50px; 
            height: 3px; 
            background: var(--accent); 
            margin: 10px auto; 
        }

        .game-grid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 15px; 
            padding: 0 15px; 
        }
        .game-card { 
            background: var(--bg-surface); 
            border-radius: 12px; 
            overflow: hidden; 
            border: 1px solid var(--border-light); 
            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; 
            display: block;
        }
        .game-card h3 { 
            padding: 12px; 
            font-size: 14px; 
            text-align: center; 
            color: var(--text-primary); 
            white-space: nowrap; 
            overflow: hidden; 
            text-overflow: ellipsis;
        }

        .payment-methods { 
            display: flex; 
            flex-wrap: wrap; 
            justify-content: center; 
            gap: 15px; 
            padding: 20px 15px; 
            background: var(--bg-surface); 
            margin: 30px 15px; 
            border-radius: 15px;
        }
        .payment-item { 
            display: flex; 
            align-items: center; 
            gap: 8px; 
            font-size: 13px; 
            color: var(--secondary); 
            background: rgba(255,255,255,0.05); 
            padding: 8px 12px; 
            border-radius: 8px;
        }
        .payment-item i { color: var(--primary); }

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

        .lottery-table { 
            margin: 20px 15px; 
            width: 100%; 
            border-collapse: collapse; 
            background: var(--bg-surface); 
            border-radius: 12px; 
            overflow: hidden; 
            font-size: 13px;
        }
        .lottery-table th { background: var(--primary-dark); color: #000; padding: 12px; text-align: left; }
        .lottery-table td { padding: 12px; border-bottom: 1px solid var(--border-light); color: var(--text-secondary); }
        .lottery-table tr:last-child td { border: none; }
        .win-amount { color: var(--success); font-weight: bold; }

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

        .comment-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
            gap: 15px; 
            padding: 0 15px; 
        }
        .comment-card { 
            background: var(--bg-surface); 
            padding: 20px; 
            border-radius: 15px; 
            border: 1px solid var(--border-light);
        }
        .user-info { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .user-info i { font-size: 24px; color: var(--primary); }
        .user-info .uname { font-weight: bold; font-size: 14px; }
        .stars { color: var(--warning); font-size: 12px; margin-bottom: 10px; }
        .comment-text { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; }
        .comment-date { font-size: 11px; color: var(--text-muted); }

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

        .security-banner { 
            margin: 30px 15px; 
            padding: 25px; 
            background: var(--bg-surface); 
            border-radius: 20px; 
            text-align: center; 
            border: 1px dashed var(--primary);
        }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; }
        .security-icons i { font-size: 30px; color: var(--success); }
        .security-text { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; }
        .security-link { color: var(--primary); font-size: 13px; text-decoration: underline; }

        .navigator { 
            position: fixed; 
            bottom: 0; 
            left: 0; 
            right: 0; 
            background: var(--bg-surface); 
            display: flex; 
            justify-content: space-around; 
            align-items: center; 
            padding: 10px 0; 
            border-top: 2px solid var(--primary); 
            z-index: 2000; 
            box-shadow: 0 -5px 15px rgba(0,0,0,0.5);
        }
        .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; color: var(--primary); }

        footer { 
            background-color: var(--bg-surface); 
            padding: 40px 20px 100px; 
            border-top: 1px solid var(--border-medium); 
            text-align: center; 
        }
        footer .contact-section { 
            margin-bottom: 30px; 
            display: flex; 
            justify-content: center; 
            gap: 20px; 
            flex-wrap: wrap; 
            border-bottom: 1px solid var(--border-light); 
            padding-bottom: 20px;
        }
        footer .contact-link { color: var(--secondary); font-size: 14px; }
        footer .footer-cols { 
            display: grid; 
            grid-template-columns: repeat(3, 1fr); 
            gap: 10px; 
            text-align: left; 
            margin-bottom: 30px;
        }
        footer .footer-cols a { font-size: 13px; color: var(--text-secondary); display: block; margin-bottom: 8px; }
        footer .copyright { color: var(--text-muted); font-size: 12px; }

        @media (max-width: 600px) {
            .footer-cols { grid-template-columns: repeat(2, 1fr); }
            .intro-card h1 { font-size: 20px; }
            .jackpot-value { font-size: 24px; }
        }