:root {
            --primary: #D4AF37;
            --primary-hover: #F1C40F;
            --primary-active: #B8860B;
            --secondary: #E5E5E5;
            --accent: #FF0000;
            --bg-default: #0F0F0F;
            --bg-paper: #1A1A1A;
            --bg-elevated: #252525;
            --text-primary: #FFFFFF;
            --text-secondary: #A0A0A0;
            --text-muted: #6B6B6B;
            --border-default: #333333;
            --border-brand: #D4AF37;
            --radius: 12px;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-default);
            color: var(--text-primary);
            font-family: 'Montserrat', sans-serif;
            font-size: 16px;
            line-height: 1.5;
            padding-bottom: 70px;
        }

        header {
            background-color: var(--bg-paper);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-default);
        }

        header .logo-box {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        header img { width: 25px; height: 25px; object-fit: contain; }
        header strong { font-size: 16px; font-weight: 400; color: var(--primary); font-family: 'Oswald', sans-serif; }

        header .auth-buttons { display: flex; gap: 8px; }
        header button {
            padding: 6px 12px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
        }

        header .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        header .btn-register { background: var(--primary); color: #000; }

        main { max-width: 1200px; margin: 0 auto; padding: 0; }

        .banner-container { width: 100%; cursor: pointer; }
        .banner-container img { width: 100%; aspect-ratio: 2/1; display: block; object-fit: cover; }

        .jackpot-box {
            background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
            margin: 15px;
            padding: 20px;
            border-radius: var(--radius);
            text-align: center;
            border: 1px solid var(--border-brand);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
        }

        .jackpot-title { font-family: 'Oswald', sans-serif; color: var(--primary); font-size: 18px; text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount { font-family: 'Oswald', sans-serif; font-size: 32px; font-weight: 900; color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.5); }

        .intro-section { padding: 25px 15px; text-align: center; }
        .intro-section h1 { font-family: 'Oswald', sans-serif; font-size: 24px; color: var(--primary); margin-bottom: 15px; line-height: 1.2; }
        .intro-section p { color: var(--text-secondary); font-size: 14px; line-height: 1.6; }

        .section-title { padding: 15px; font-family: 'Oswald', sans-serif; font-size: 20px; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ""; width: 4px; height: 20px; background: var(--primary); border-radius: 2px; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px 15px; }
        .game-card { background: var(--bg-paper); border-radius: var(--radius); overflow: hidden; text-decoration: none; border: 1px solid var(--border-default); transition: 0.3s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { color: var(--text-primary); font-size: 14px; padding: 10px; text-align: center; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

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

        .guide-section { padding: 15px; }
        .guide-card { background: var(--bg-paper); padding: 15px; border-radius: var(--radius); margin-bottom: 15px; border-left: 3px solid var(--primary); }
        .guide-card h2 { font-size: 18px; margin-bottom: 10px; color: var(--primary); }
        .guide-card p { font-size: 14px; color: var(--text-secondary); }

        .lottery-marquee { background: var(--bg-elevated); margin: 15px 0; padding: 10px 0; overflow: hidden; position: relative; }
        .marquee-content { display: flex; animation: scroll 30s linear infinite; gap: 30px; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }
        .lottery-item { white-space: nowrap; font-size: 13px; color: var(--text-secondary); }
        .lottery-item span { color: var(--primary); font-weight: bold; }

        .provider-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }
        .provider-item { background: var(--bg-paper); padding: 12px; text-align: center; border-radius: 8px; font-weight: 600; font-size: 14px; color: var(--primary); border: 1px solid var(--border-default); }

        .comment-section { padding: 15px; }
        .comment-card { background: var(--bg-paper); padding: 15px; border-radius: var(--radius); margin-bottom: 12px; }
        .user-info { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .user-info i { font-size: 24px; color: var(--text-muted); }
        .user-meta h3 { font-size: 14px; }
        .stars { color: #FFD600; font-size: 12px; }
        .comment-text { font-size: 13px; color: var(--text-secondary); margin-bottom: 5px; }
        .comment-date { font-size: 11px; color: var(--text-muted); }

        .faq-section { padding: 15px; }
        .faq-item { background: var(--bg-paper); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 15px; color: var(--primary); cursor: pointer; border-bottom: 1px solid var(--border-default); }
        .faq-answer { padding: 15px; font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

        .security-section { padding: 20px 15px; background: #000; text-align: center; margin-top: 20px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--primary); }
        .security-text { font-size: 12px; color: var(--text-muted); max-width: 300px; margin: 0 auto; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 65px;
            background: var(--bg-paper);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
        }
        .nav-item { text-decoration: none; text-align: center; color: var(--text-secondary); flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item span { font-size: 11px; font-weight: 500; }
        .nav-item.active { color: var(--primary); }

        footer { background: #080808; padding: 30px 15px 100px; border-top: 1px solid var(--border-default); }
        footer h2 { font-size: 16px; margin-bottom: 15px; color: var(--text-primary); }
        .footer-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 30px; }
        .footer-contact a { color: var(--text-secondary); text-decoration: none; font-size: 13px; display: flex; align-items: center; gap: 8px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        footer a { text-decoration: none; color: var(--text-muted); font-size: 13px; }
        .copyright { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid #1a1a1a; padding-top: 20px; }