:root {
            --primary: #D4AF37;
            --primary-bright: #F9A602;
            --secondary: #1A1A1A;
            --accent: #C0C0C0;
            --bg-main: #0D0D0D;
            --bg-surface: #161616;
            --bg-elevated: #242424;
            --bg-deep: #050505;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-link: #D4AF37;
            --success: #00E676;
            --border-light: #2C2C2C;
            --border-strong: #3D3D3D;
            --radius: 12px;
        }
        body {
            margin: 0;
            padding: 0;
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }
        header {
            background-color: var(--bg-deep);
            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-light);
        }
        header .brand {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        header .brand img {
            width: 25px;
            height: 25px;
            object-fit: contain;
        }
        header .brand strong {
            font-size: 16px;
            font-weight: 400;
            color: var(--primary);
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
        }
        header .auth-buttons {
            display: flex;
            gap: 8px;
        }
        header .btn-login, header .btn-register {
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        header .btn-login {
            background: transparent;
            color: var(--text-primary);
            border: 1px solid var(--primary);
        }
        header .btn-register {
            background: var(--primary);
            color: var(--bg-deep);
        }
        main {
            padding-bottom: 80px;
            max-width: 800px;
            margin: 0 auto;
        }
        .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: linear-gradient(135deg, var(--bg-surface), var(--bg-deep));
            margin: 15px;
            padding: 20px;
            border-radius: var(--radius);
            text-align: center;
            border: 1px solid var(--primary);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
        }
        .jackpot-title {
            color: var(--primary);
            font-family: 'Oswald', sans-serif;
            font-size: 1.2rem;
            margin-bottom: 10px;
            text-transform: uppercase;
        }
        .jackpot-amount {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-bright);
            font-family: 'Oswald', sans-serif;
            text-shadow: 0 0 10px rgba(249, 166, 2, 0.5);
        }
        .intro-card {
            padding: 20px;
            margin: 15px;
            background: var(--bg-surface);
            border-radius: var(--radius);
            border-left: 4px solid var(--primary);
        }
        .intro-card h1 {
            font-size: 1.5rem;
            margin: 0 0 10px 0;
            color: var(--primary);
        }
        .intro-card p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            margin: 0;
        }
        .section-title {
            padding: 0 15px;
            font-size: 1.25rem;
            font-family: 'Oswald', sans-serif;
            border-left: 3px solid var(--primary);
            margin: 25px 15px 15px 15px;
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            padding: 0 15px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: var(--radius);
            overflow: hidden;
            text-decoration: none;
            transition: transform 0.2s;
            border: 1px solid var(--border-light);
        }
        .game-card:active { transform: scale(0.98); }
        .game-card img {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            display: block;
        }
        .game-card h3 {
            font-size: 0.85rem;
            padding: 10px;
            margin: 0;
            color: var(--text-primary);
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .payments-licensing {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            padding: 20px 15px;
            background: var(--bg-deep);
            margin: 20px 0;
        }
        .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);
        }
        .guides-container {
            padding: 15px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .guide-card {
            background: var(--bg-elevated);
            padding: 15px;
            border-radius: var(--radius);
        }
        .guide-card h2 {
            font-size: 1.1rem;
            color: var(--primary);
            margin: 0 0 10px 0;
        }
        .guide-card p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin: 0;
        }
        .marquee-container {
            background: var(--bg-deep);
            padding: 15px 0;
            overflow: hidden;
            margin: 20px 0;
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
        }
        .marquee-content {
            display: flex;
            gap: 20px;
            animation: scroll 30s linear infinite;
        }
        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .win-tag {
            background: var(--bg-surface);
            padding: 8px 15px;
            border-radius: 20px;
            white-space: nowrap;
            border: 1px solid var(--border-light);
            font-size: 0.85rem;
        }
        .win-tag span { color: var(--success); font-weight: bold; }
        .providers-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            padding: 15px;
        }
        .provider-box {
            background: var(--bg-surface);
            padding: 12px;
            text-align: center;
            border: 1px solid var(--border-light);
            border-radius: 8px;
            font-weight: 600;
            color: var(--accent);
        }
        .review-card {
            background: var(--bg-surface);
            margin: 15px;
            padding: 20px;
            border-radius: var(--radius);
            border-bottom: 2px solid var(--primary);
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-header i {
            font-size: 2rem;
            color: var(--primary);
        }
        .stars { color: var(--primary-bright); font-size: 0.8rem; }
        .faq-section { padding: 15px; }
        .faq-item {
            margin-bottom: 15px;
            background: var(--bg-surface);
            border-radius: 8px;
            overflow: hidden;
        }
        .faq-question {
            padding: 15px;
            font-weight: 600;
            color: var(--primary);
            cursor: pointer;
            border-bottom: 1px solid var(--border-light);
        }
        .faq-answer {
            padding: 15px;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        .safety-section {
            padding: 20px 15px;
            text-align: center;
            background: var(--bg-deep);
            margin-top: 30px;
        }
        .safety-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
        }
        .safety-icons i { font-size: 2rem; color: var(--primary); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-deep);
            height: 65px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-light);
            z-index: 1000;
        }
        .nav-item {
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            color: var(--text-secondary);
            font-size: 0.75rem;
        }
        .nav-item i { font-size: 1.2rem; }
        .nav-item:nth-child(3) {
            background: var(--primary);
            color: var(--bg-deep);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            justify-content: center;
            margin-top: -30px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.5);
        }
        footer {
            background: var(--bg-deep);
            padding: 30px 15px 100px 15px;
            border-top: 1px solid var(--border-strong);
        }
        footer .contact-row {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 25px;
            justify-content: center;
        }
        footer a { color: var(--text-secondary); text-decoration: none; font-size: 0.9rem; }
        footer a:hover { color: var(--primary); }
        footer .links-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 25px;
        }
        footer .copy {
            text-align: center;
            font-size: 0.8rem;
            color: var(--text-disabled);
            border-top: 1px solid var(--border-light);
            padding-top: 20px;
        }