:root {
            --primary: #D4AF37;
            --primary-light: #F2D06B;
            --primary-dark: #996515;
            --secondary: #00A86B;
            --accent: #FFD700;
            --bg-main: #0B0C10;
            --bg-surface: #1F2833;
            --bg-elevated: #2C3531;
            --text-primary: #FFFFFF;
            --text-secondary: #C5C6C7;
            --text-muted: #8892B0;
            --text-link: #66FCF1;
            --border-default: #45A29E;
            --border-subtle: #1F2833;
            --border-contrast: #D4AF37;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Montserrat', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        img { max-width: 100%; height: auto; display: block; }
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(11, 12, 16, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-subtle);
            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; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--text-primary); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--primary); color: var(--bg-main); }
        main { padding: 0 0 80px 0; max-width: 1200px; margin: 0 auto; }
        .banner-container { width: 100%; aspect-ratio: 2 / 1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section {
            background: var(--bg-surface);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--primary-dark);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }
        .jackpot-title { font-family: 'Poppins', sans-serif; color: var(--accent); font-size: 1.2rem; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 2.2rem; color: #FFFFFF; text-shadow: 0 0 10px var(--primary); }
        .intro-card { padding: 20px; margin: 15px; background: var(--bg-elevated); border-radius: 12px; border-left: 4px solid var(--primary); }
        .intro-card h1 { font-size: 1.5rem; margin-bottom: 10px; color: var(--primary-light); }
        .intro-card p { color: var(--text-secondary); font-size: 0.95rem; }
        .section-title { padding: 0 15px; margin: 20px 0 10px; font-size: 1.25rem; display: flex; align-items: center; gap: 10px; color: var(--primary-light); }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-subtle); transition: transform 0.3s; }
        .game-card:hover { transform: translateY(-5px); border-color: var(--primary); }
        .game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
        .game-card h3 { padding: 10px; font-size: 0.85rem; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payments-section { background: var(--bg-surface); margin: 20px 15px; padding: 20px; border-radius: 12px; }
        .payments-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .payment-item i { font-size: 1.5rem; color: var(--primary); margin-bottom: 5px; }
        .payment-item span { display: block; font-size: 0.7rem; color: var(--text-muted); }
        .guides-section { padding: 15px; }
        .guide-item { background: var(--bg-elevated); padding: 15px; border-radius: 10px; margin-bottom: 15px; }
        .guide-item h2 { font-size: 1.1rem; color: var(--primary); margin-bottom: 10px; }
        .guide-item p { font-size: 0.9rem; color: var(--text-secondary); text-align: justify; }
        .winners-marquee { background: var(--bg-surface); padding: 15px 0; margin: 20px 0; overflow: hidden; position: relative; }
        .marquee-content { display: flex; gap: 20px; animation: marquee 30s linear infinite; width: max-content; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .winner-tag { background: var(--bg-elevated); padding: 8px 15px; border-radius: 20px; border: 1px solid var(--primary-dark); display: flex; flex-direction: column; min-width: 180px; }
        .winner-tag span { font-size: 0.8rem; }
        .winner-tag .amount { color: var(--secondary); font-weight: bold; }
        .providers-section { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }
        .provider-box { background: linear-gradient(135deg, var(--bg-elevated), var(--bg-surface)); padding: 15px; text-align: center; border-radius: 8px; border: 1px solid var(--border-default); font-weight: bold; font-size: 0.9rem; }
        .reviews-section { padding: 15px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid var(--border-subtle); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 1.5rem; color: var(--text-muted); }
        .review-stars { color: var(--accent); font-size: 0.8rem; }
        .faq-section { padding: 15px; }
        .faq-item { background: var(--bg-elevated); margin-bottom: 10px; border-radius: 8px; padding: 15px; }
        .faq-item h2 { font-size: 1rem; color: var(--primary-light); margin-bottom: 8px; }
        .faq-item p { font-size: 0.875rem; color: var(--text-secondary); }
        .security-section { background: var(--bg-elevated); margin: 15px; padding: 20px; border-radius: 12px; text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 2rem; color: var(--secondary); }
        .security-text { font-size: 0.85rem; color: var(--text-muted); }
        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            background: rgba(31, 40, 51, 0.95);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 2px solid var(--primary);
            z-index: 1001;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 0.75rem; color: var(--text-secondary); }
        .nav-item i { font-size: 1.2rem; margin-bottom: 4px; color: var(--primary); }
        footer {
            background: var(--bg-main);
            padding: 40px 20px 100px;
            border-top: 1px solid var(--border-subtle);
            text-align: center;
        }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
        .footer-social a { color: var(--text-secondary); font-size: 1.2rem; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; text-align: left; }
        .footer-links a { font-size: 0.85rem; color: var(--text-muted); }
        .footer-links a:hover { color: var(--text-link); }
        .footer-copyright { font-size: 0.8rem; color: var(--text-muted); padding-top: 20px; border-top: 1px solid var(--bg-surface); }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .footer-links { grid-template-columns: repeat(5, 1fr); }
        }