:root {
            --primary: #D4AF37;
            --secondary: #FFD700;
            --accent: #FF4500;
            --gold-gradient: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --bg-main: #050505;
            --bg-surface: #121212;
            --bg-elevated: #1E1E1E;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --border-default: #333333;
            --font-main: 'Montserrat', 'Roboto', 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; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }

        header {
            background-color: 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 .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(--primary); }
        header .auth-buttons { display: flex; gap: 10px; }
        header button {
            padding: 8px 16px;
            border-radius: 4px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            font-size: 14px;
        }
        header .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--primary); }
        header .btn-register { background: var(--gold-gradient); color: #000; }

        main { padding-bottom: 80px; }
        .banner-container { width: 100%; aspect-ratio: 2/1; cursor: pointer; overflow: hidden; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-section {
            background: var(--bg-elevated);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--primary);
            position: relative;
        }
        .jackpot-title { color: var(--secondary); font-weight: 700; font-size: 1.2rem; margin-bottom: 10px; text-transform: uppercase; }
        .jackpot-amount { font-size: 2.5rem; font-weight: 900; background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-family: 'Courier New', monospace; }

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

        .section-title { padding: 15px 15px 5px; font-size: 1.25rem; border-left: 4px solid var(--primary); margin: 10px 15px; }

        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 15px; }
        .game-card { background: var(--bg-surface); border-radius: 10px; overflow: hidden; border: 1px solid var(--border-default); transition: transform 0.2s; }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { padding: 8px; font-size: 0.9rem; text-align: center; 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-surface); margin: 15px; border-radius: 8px; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; font-size: 0.7rem; color: var(--text-secondary); }
        .payment-item i { font-size: 1.5rem; color: var(--primary); }

        .guide-section { padding: 15px; }
        .guide-card { background: var(--bg-surface); padding: 15px; border-radius: 8px; margin-bottom: 15px; border-left: 2px solid var(--primary); }
        .guide-card h2 { font-size: 1.1rem; margin-bottom: 8px; color: var(--secondary); }
        .guide-card p { font-size: 0.875rem; color: var(--text-secondary); }

        .marquee-box { background: #000; padding: 10px 0; border-top: 1px solid var(--border-default); border-bottom: 1px solid var(--border-default); overflow: hidden; position: relative; }
        .marquee-content { display: flex; gap: 30px; animation: scroll-left 40s linear infinite; white-space: nowrap; }
        @keyframes scroll-left { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        .marquee-item { color: var(--text-secondary); font-size: 0.85rem; }
        .marquee-item span { color: var(--secondary); font-weight: bold; }

        .providers-wall { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 15px; }
        .provider-btn { background: var(--bg-elevated); padding: 10px; text-align: center; border-radius: 5px; border: 1px solid var(--border-default); font-weight: 600; color: var(--primary); }

        .reviews-container { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; border: 1px solid var(--border-default); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 2rem; color: var(--text-secondary); }
        .stars { color: var(--secondary); font-size: 0.8rem; }
        .review-date { font-size: 0.7rem; color: var(--text-tertiary); margin-top: 5px; }

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

        .security-section { padding: 20px 15px; background: #0a0a0a; text-align: center; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 1.5rem; color: var(--primary); }
        .security-text { font-size: 0.8rem; color: var(--text-secondary); max-width: 500px; margin: 0 auto; }

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

        footer { background: #000; padding: 30px 15px 100px; text-align: center; border-top: 1px solid var(--border-default); }
        .footer-contact { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; flex-wrap: wrap; }
        .footer-contact a { font-size: 0.9rem; color: var(--primary); border: 1px solid var(--primary); padding: 5px 12px; border-radius: 20px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-links a { color: var(--text-secondary); font-size: 0.8rem; }
        .footer-copy { font-size: 0.75rem; color: var(--text-tertiary); }