:root {
            --primary: #D4AF37;
            --primary-light: #F9E498;
            --primary-dark: #996515;
            --secondary: #E60000;
            --accent: #FFD700;
            --bg-default: #0B0C0E;
            --bg-paper: #16181D;
            --bg-elevated: #22252C;
            --bg-nav: #050505;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --text-gold: #FFD700;
            --border-default: #2D323B;
            --font-main: 'Inter', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
            --font-display: 'Montserrat', 'Poppins', sans-serif;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-default);
            color: var(--text-primary);
            font-family: var(--font-main);
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }

        header {
            background-color: var(--bg-nav);
            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-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(--text-gold); font-family: var(--font-display); }
        .header-right { display: flex; gap: 10px; }
        .btn-login, .btn-register {
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--primary); }
        .btn-register { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #000; }

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

        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; border-radius: 12px; margin-bottom: 20px; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-section {
            background: var(--bg-paper);
            border: 2px solid var(--primary-dark);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
        }
        .jackpot-title { font-family: var(--font-display); color: var(--primary-light); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: 900; color: var(--text-gold); text-shadow: 0 0 10px rgba(212, 175, 55, 0.5); }

        .intro-card { background: var(--bg-elevated); padding: 20px; border-radius: 12px; margin-bottom: 25px; border-left: 4px solid var(--primary); }
        .intro-card h1 { font-size: 24px; color: var(--primary-light); margin-bottom: 10px; font-family: var(--font-display); }
        .intro-card p { color: var(--text-secondary); font-size: 15px; }

        h2 { font-size: 20px; margin: 20px 0 15px; color: var(--text-primary); border-left: 3px solid var(--secondary); padding-left: 10px; font-family: var(--font-display); }

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

        .payment-license { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; background: var(--bg-paper); padding: 15px; border-radius: 12px; margin-bottom: 25px; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; color: var(--text-secondary); font-size: 10px; }
        .payment-item i { font-size: 20px; color: var(--primary); }

        .guide-section { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .guide-card { background: var(--bg-elevated); padding: 15px; border-radius: 10px; }
        .guide-card h3 { color: var(--primary-light); margin-bottom: 8px; font-size: 18px; }
        .guide-card p { font-size: 14px; color: var(--text-secondary); }

        .lottery-section { background: var(--bg-paper); border-radius: 12px; padding: 15px; margin-bottom: 25px; }
        .lottery-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border-default); font-size: 13px; }
        .lottery-item:last-child { border-bottom: none; }
        .winner-name { color: var(--primary-light); }
        .winner-win { color: var(--accent); font-weight: bold; }

        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .provider-item { background: linear-gradient(45deg, var(--bg-elevated), #2a2d35); padding: 12px; text-align: center; border-radius: 8px; color: var(--primary-light); font-weight: 600; font-size: 14px; }

        .comment-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .comment-card { background: var(--bg-paper); padding: 15px; border-radius: 12px; border: 1px solid var(--border-default); }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-header i { font-size: 24px; color: var(--text-secondary); }
        .comment-user { font-weight: 600; font-size: 14px; }
        .comment-stars { color: var(--accent); font-size: 12px; }
        .comment-content { font-size: 14px; color: var(--text-secondary); font-style: italic; margin-bottom: 8px; }
        .comment-date { font-size: 11px; color: var(--text-hint); }

        .faq-section { margin-bottom: 25px; }
        .faq-item { background: var(--bg-paper); margin-bottom: 10px; border-radius: 8px; padding: 15px; }
        .faq-item h3 { font-size: 16px; color: var(--primary-light); margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }

        .security-section { background: #000; padding: 20px; border-radius: 12px; text-align: center; border: 1px solid var(--border-default); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--primary); }
        .security-text { font-size: 13px; color: var(--text-secondary); }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 65px;
            background: var(--bg-nav);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
        }
        .nav-item { text-decoration: none; display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-secondary); font-size: 12px; }
        .nav-item i { font-size: 20px; }

        footer { background: var(--bg-nav); padding: 30px 15px 100px; text-align: center; border-top: 1px solid var(--border-default); }
        .footer-contact { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .footer-contact a { color: var(--text-secondary); text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-links a { color: var(--text-hint); text-decoration: none; font-size: 13px; }
        .footer-copyright { font-size: 12px; color: var(--text-hint); border-top: 1px solid var(--border-default); pt: 15px; }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .guide-section, .comment-grid { grid-template-columns: 1fr 1fr; }
        }