:root {
            --primary-gold: #FFD700;
            --secondary-silver: #C0C0C0;
            --accent-orange: #FF4500;
            --gold-grad: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --bg-main: #050505;
            --bg-sec: #121212;
            --bg-surface: #1E1E1E;
            --text-main: #FFFFFF;
            --text-sec: #B0B0B0;
            --font-main: 'Montserrat', 'Inter', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-main);
            font-family: var(--font-main);
            font-size: 16px;
            line-height: 1.5;
            overflow-x: hidden;
        }
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(18, 18, 18, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #333;
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--primary-gold); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--primary-gold); border: 1px solid var(--primary-gold); }
        .btn-register { background: var(--gold-grad); color: #000; }
        
        main { padding-bottom: 80px; max-width: 1200px; margin: 0 auto; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-box {
            background: var(--bg-surface);
            margin: 15px;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid #444;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }
        .jackpot-label { color: var(--primary-gold); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: 900; color: var(--primary-gold); margin-top: 5px; font-family: 'Roboto Mono', monospace; }

        .intro-card { padding: 20px; margin: 15px; background: var(--bg-sec); border-radius: 12px; border-left: 4px solid var(--primary-gold); }
        .intro-card h1 { font-size: 24px; color: var(--primary-gold); margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: var(--text-sec); }

        .section-title { padding: 15px 15px 5px; font-size: 20px; color: var(--primary-gold); display: flex; align-items: center; gap: 8px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card { background: var(--bg-sec); border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid #333; transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 10px; font-size: 14px; color: var(--text-main); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

        .payment-section { background: var(--bg-sec); padding: 20px 15px; margin: 15px 0; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .payment-item i { font-size: 24px; color: var(--secondary-silver); margin-bottom: 5px; display: block; }
        .payment-item span { font-size: 10px; color: var(--text-sec); }

        .guides-section { padding: 15px; }
        .guide-card { background: var(--bg-surface); padding: 15px; border-radius: 10px; margin-bottom: 12px; border-top: 2px solid var(--accent-orange); }
        .guide-card h2 { font-size: 18px; color: var(--primary-gold); margin-bottom: 8px; }
        .guide-card p { font-size: 13px; color: var(--text-sec); }

        .lottery-section { background: #0a0a0a; padding: 20px 15px; margin: 15px; border-radius: 12px; }
        .lottery-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #222; font-size: 12px; }
        .lottery-user { color: var(--primary-gold); }
        .lottery-win { color: var(--accent-orange); font-weight: bold; }

        .provider-wall { display: flex; flex-wrap: wrap; gap: 10px; padding: 15px; justify-content: center; }
        .provider-tag { background: linear-gradient(45deg, #1e1e1e, #333); padding: 8px 15px; border-radius: 5px; font-size: 12px; color: var(--primary-gold); font-weight: bold; border: 1px solid #444; }

        .review-section { padding: 15px; }
        .review-card { background: var(--bg-sec); padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid #333; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--secondary-silver); }
        .review-stars { color: #ffc107; font-size: 12px; }
        .review-content { font-size: 13px; font-style: italic; color: var(--text-sec); }
        .review-date { font-size: 11px; color: #666; margin-top: 8px; display: block; }

        .faq-section { padding: 15px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 14px; cursor: pointer; color: var(--primary-gold); border-bottom: 1px solid #333; }
        .faq-answer { padding: 15px; font-size: 13px; color: var(--text-sec); background: #181818; }

        .security-section { padding: 20px; text-align: center; background: var(--bg-sec); border-top: 1px solid #333; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--primary-gold); }
        .security-text { font-size: 12px; color: var(--text-sec); max-width: 80%; margin: 0 auto; }

        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            background: #121212;
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid #333;
            z-index: 1001;
        }
        .nav-item { text-decoration: none; color: var(--text-sec); text-align: center; font-size: 11px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; color: var(--secondary-silver); }
        .nav-item:nth-child(3) i { color: var(--primary-gold); font-size: 26px; margin-top: -10px; }

        footer { background: #080808; padding: 30px 15px 100px; border-top: 2px solid var(--bg-surface); }
        .footer-row-1 { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; flex-wrap: wrap; }
        .footer-row-1 a { color: var(--text-sec); text-decoration: none; font-size: 13px; padding: 5px 10px; border: 1px solid #333; border-radius: 5px; }
        .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; margin-bottom: 25px; }
        .footer-grid a { color: #666; text-decoration: none; font-size: 12px; }
        .footer-copy { text-align: center; font-size: 11px; color: #444; border-top: 1px solid #222; padding-top: 15px; }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .footer-grid { grid-template-columns: repeat(5, 1fr); }
        }