:root {
            --primary-bg: #0D0D0D;
            --secondary-bg: #1A1A1B;
            --tertiary-bg: #262626;
            --gold: #D4AF37;
            --gold-light: #F9D71C;
            --gold-dark: #AA8928;
            --royal-blue: #003366;
            --text-white: #FFFFFF;
            --text-gray: #B0B3B8;
            --success: #28A745;
            --win-color: #FFD700;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--primary-bg);
            color: var(--text-white);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            padding-bottom: 80px;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--gold-light); }
        h1 { font-size: 24px; margin-bottom: 15px; }
        h2 { font-size: 22px; margin: 25px 0 15px; text-align: center; border-bottom: 2px solid var(--gold); display: inline-block; padding-bottom: 5px; width: 100%; }
        h3 { font-size: 16px; margin-top: 10px; color: var(--text-white); }
        p { color: var(--text-gray); font-size: 14px; margin-bottom: 10px; }
        header {
            background: var(--secondary-bg);
            padding: 12px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--gold-dark);
        }
        header .logo-box { display: flex; align-items: center; gap: 8px; }
        header .logo-box img { width: 25px; height: 25px; }
        header .logo-box strong { font-size: 16px; font-weight: 400; color: var(--gold); }
        header .auth-btns { display: flex; gap: 10px; }
        header button {
            padding: 8px 16px;
            border-radius: 20px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            font-size: 14px;
        }
        .btn-login { background: transparent; border: 1px solid var(--gold); color: var(--gold); }
        .btn-register { background: linear-gradient(135deg, var(--gold-light), var(--gold-dark)); color: #000; }
        main { padding: 15px; max-width: 1200px; margin: 0 auto; }
        .banner { width: 100%; aspect-ratio: 2/1; border-radius: 12px; overflow: hidden; margin-bottom: 20px; box-shadow: 0 4px 15px rgba(0,0,0,0.5); cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: radial-gradient(circle, var(--royal-blue) 0%, #000 100%);
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 2px solid var(--gold);
            margin-bottom: 25px;
        }
        .jackpot-title { font-family: 'Montserrat', sans-serif; color: var(--gold-light); font-size: 18px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { 
            font-family: 'Roboto Mono', monospace; 
            font-size: 32px; 
            color: var(--win-color); 
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
            margin: 10px 0;
            font-weight: 900;
        }
        .intro-card { background: var(--secondary-bg); padding: 20px; border-radius: 12px; border-left: 4px solid var(--gold); margin-bottom: 25px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 25px; }
        .game-card { background: var(--tertiary-bg); border-radius: 10px; overflow: hidden; text-decoration: none; transition: transform 0.2s; border: 1px solid #333; }
        .game-card:active { transform: scale(0.98); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card .info { padding: 10px; text-align: center; }
        .payment-section { background: var(--tertiary-bg); padding: 20px; border-radius: 12px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .payment-item i { font-size: 24px; color: var(--gold-light); margin-bottom: 5px; display: block; }
        .payment-item span { font-size: 10px; color: var(--text-gray); text-transform: uppercase; }
        .guides-container { display: grid; grid-template-columns: 1fr; gap: 15px; }
        .guide-item { background: var(--secondary-bg); padding: 15px; border-radius: 10px; border: 1px solid var(--tertiary-bg); }
        .lottery-list { background: var(--secondary-bg); border-radius: 12px; padding: 10px; overflow: hidden; }
        .lottery-item { 
            display: flex; justify-content: space-between; padding: 12px; 
            border-bottom: 1px solid #333; font-size: 13px; align-items: center;
        }
        .lottery-item:last-child { border-bottom: none; }
        .lottery-user { color: var(--gold-light); font-weight: 600; }
        .lottery-win { color: var(--success); font-family: 'Roboto Mono', monospace; font-weight: 700; }
        .providers-box { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 25px; }
        .provider-tag { background: var(--royal-blue); color: var(--gold-light); padding: 8px 15px; border-radius: 5px; font-weight: 600; font-size: 14px; border: 1px solid var(--gold-dark); }
        .comment-grid { display: grid; gap: 15px; }
        .comment-card { background: var(--tertiary-bg); padding: 15px; border-radius: 12px; position: relative; }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-header i { font-size: 24px; color: var(--gold); }
        .stars { color: var(--win-color); font-size: 12px; }
        .faq-section { margin-top: 30px; }
        .faq-item { background: var(--secondary-bg); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; color: var(--gold-light); cursor: pointer; border-bottom: 1px solid #333; }
        .faq-answer { padding: 15px; font-size: 14px; color: var(--text-gray); }
        .security-section { background: #050505; padding: 20px; border-radius: 12px; text-align: center; margin-top: 30px; border: 1px dashed var(--gold-dark); }
        .navigator {
            position: fixed; bottom: 0; left: 0; right: 0; height: 65px;
            background: #111; display: flex; justify-content: space-around;
            align-items: center; border-top: 2px solid var(--gold-dark); z-index: 1001;
        }
        .nav-item { text-decoration: none; color: var(--text-gray); text-align: center; flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 3px; }
        .nav-item span { font-size: 11px; font-weight: 500; }
        .nav-item:active { color: var(--gold-light); }
        footer { background: #000; padding: 40px 15px 100px; text-align: center; border-top: 1px solid var(--tertiary-bg); }
        .footer-contact { margin-bottom: 30px; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
        .footer-contact a { color: var(--gold); text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { color: var(--text-gray); text-decoration: none; font-size: 13px; }
        .copyright { font-size: 12px; color: var(--muted); margin-top: 20px; border-top: 1px solid #222; padding-top: 20px; }