:root {
            --primary: #FFD700;
            --primary-variant: #B8860B;
            --secondary: #D4AF37;
            --accent: #FF4500;
            --bg-main: #0A0B0D;
            --bg-surface: #16181D;
            --bg-elevated: #1F2229;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B8C1;
            --text-muted: #707A8A;
            --text-link: #F0B90B;
            --success: #0ECB81;
            --error: #F6465D;
            --border-default: #2B3139;
            --font-main: 'Montserrat', sans-serif;
            --font-secondary: 'Oswald', sans-serif;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { background-color: var(--bg-main); color: var(--text-primary); font-family: var(--font-main); line-height: 1.5; overflow-x: hidden; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }

        header {
            background: var(--bg-surface);
            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: 10px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--primary); }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 6px 15px; border-radius: 6px; font-weight: 600; font-size: 0.875rem; cursor: pointer; border: none; }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--primary); color: #000; }

        main { padding-bottom: 80px; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; object-fit: cover; }
        
        .jackpot-container {
            background: linear-gradient(135deg, var(--bg-elevated) 0%, #2c2205 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--secondary);
        }
        .jackpot-title { font-family: var(--font-secondary); font-size: 1.25rem; color: var(--primary); text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount { font-size: 2.5rem; font-weight: 900; color: #fff; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }

        .intro-section { padding: 20px; text-align: center; }
        .intro-section h1 { font-family: var(--font-secondary); font-size: 1.5rem; color: var(--primary); margin-bottom: 15px; }
        .intro-section p { color: var(--text-secondary); font-size: 0.9rem; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card { background: var(--bg-surface); border-radius: 10px; overflow: hidden; border: 1px solid var(--border-default); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { padding: 10px; font-size: 0.875rem; text-align: center; color: var(--text-secondary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

        .payment-section { background: var(--bg-surface); padding: 20px 15px; margin: 20px 0; }
        .section-title { font-family: var(--font-secondary); font-size: 1.25rem; text-align: center; margin-bottom: 20px; color: var(--primary); }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .payment-item i { font-size: 1.5rem; color: var(--secondary); margin-bottom: 5px; }
        .payment-item span { display: block; font-size: 0.7rem; color: var(--text-muted); }

        .guides-section { padding: 20px 15px; }
        .guide-item { margin-bottom: 20px; background: var(--bg-elevated); padding: 15px; border-radius: 8px; }
        .guide-item h2 { font-size: 1.125rem; color: var(--secondary); margin-bottom: 10px; }
        .guide-item p { font-size: 0.875rem; color: var(--text-secondary); }

        .lottery-ticker { background: #000; padding: 10px 0; overflow: hidden; white-space: nowrap; border-top: 1px solid var(--border-default); border-bottom: 1px solid var(--border-default); }
        .ticker-wrap { display: inline-block; animation: ticker 40s linear infinite; }
        .ticker-item { display: inline-block; padding: 0 20px; font-size: 0.8rem; color: var(--text-secondary); border-right: 1px solid var(--border-default); }
        .ticker-item span { color: var(--success); font-weight: bold; }
        @keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        .providers-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }
        .provider-box { background: var(--bg-elevated); padding: 12px; text-align: center; border-radius: 6px; font-weight: 600; color: var(--text-secondary); border-left: 3px solid var(--primary); }

        .comments-section { padding: 20px 15px; overflow-x: auto; display: flex; gap: 15px; scroll-snap-type: x mandatory; }
        .comment-card { min-width: 280px; background: var(--bg-surface); padding: 15px; border-radius: 12px; scroll-snap-align: start; border: 1px solid var(--border-default); }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-user i { font-size: 2rem; color: var(--text-muted); }
        .stars { color: var(--primary); font-size: 0.8rem; }
        .comment-date { font-size: 0.75rem; color: var(--text-muted); margin-top: 10px; display: block; }

        .faq-section { padding: 20px 15px; }
        .faq-item { margin-bottom: 15px; border-bottom: 1px solid var(--border-default); padding-bottom: 15px; }
        .faq-item h3 { font-size: 1rem; color: var(--primary); margin-bottom: 8px; }
        .faq-item p { font-size: 0.875rem; color: var(--text-secondary); }

        .security-section { padding: 30px 15px; text-align: center; background: var(--bg-surface); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 1.5rem; color: var(--success); }
        .age-limit { display: inline-block; border: 2px solid var(--error); color: var(--error); border-radius: 50%; width: 40px; height: 40px; line-height: 36px; font-weight: bold; margin-bottom: 10px; }

        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
        }
        .nav-item { text-align: center; color: var(--text-secondary); font-size: 0.7rem; flex: 1; }
        .nav-item i { display: block; font-size: 1.2rem; margin-bottom: 4px; color: var(--text-secondary); }
        .nav-item:nth-child(3) i { color: var(--primary); font-size: 1.5rem; margin-top: -15px; background: var(--bg-main); border-radius: 50%; padding: 10px; border: 1px solid var(--border-default); }

        footer {
            background: var(--bg-surface);
            padding: 40px 15px 100px;
            text-align: center;
            border-top: 1px solid var(--border-default);
        }
        .footer-social { display: flex; justify-content: center; gap: 15px; margin-bottom: 30px; }
        .footer-social a { font-size: 0.875rem; color: var(--text-secondary); border: 1px solid var(--border-default); padding: 5px 12px; border-radius: 20px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; text-align: left; }
        .footer-links a { font-size: 0.8rem; color: var(--text-muted); }
        .footer-copy { font-size: 0.75rem; color: var(--text-muted); border-top: 1px solid var(--border-default); padding-top: 20px; }