:root {
            --primary: #D4AF37;
            --primary-hover: #F1C40F;
            --secondary: #059669;
            --secondary-hover: #10B981;
            --accent: #FF4500;
            --bg-main: #0D0D0D;
            --bg-surface: #1A1A1A;
            --bg-elevated: #262626;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #737373;
            --brand-contrast: #000000;
            --border-default: #333333;
            --border-strong: #4D4D4D;
            --border-gold: #D4AF37;
            --font-headings: 'Montserrat', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-body);
            line-height: 1.5;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: 0.3s;
        }

        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--bg-overlay);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-default);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .header-left img {
            width: 25px;
            height: 25px;
            object-fit: contain;
        }

        .header-left strong {
            font-size: 16px;
            font-weight: 400;
            color: var(--primary);
        }

        .header-right {
            display: flex;
            gap: 10px;
        }

        .btn {
            padding: 8px 16px;
            border-radius: 8px;
            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-strong);
        }

        .btn-register {
            background: var(--primary);
            color: var(--brand-contrast);
        }

        .btn-register:hover {
            background: var(--primary-hover);
        }

        main {
            padding: 15px;
            max-width: 1200px;
            margin: 0 auto;
            padding-bottom: 80px;
        }

        .banner-container {
            width: 100%;
            aspect-ratio: 2 / 1;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 20px;
            cursor: pointer;
        }

        .banner-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .jackpot-section {
            background: linear-gradient(135deg, #1a1a1a, #262626);
            border: 2px solid var(--border-gold);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 25px;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }

        .jackpot-label {
            color: var(--primary);
            text-transform: uppercase;
            font-weight: 900;
            font-family: var(--font-headings);
            letter-spacing: 2px;
            font-size: 14px;
            margin-bottom: 10px;
        }

        .jackpot-amount {
            font-family: 'JetBrains Mono', monospace;
            font-size: 32px;
            color: #FFFFFF;
            font-weight: 700;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }

        .intro-card {
            background: var(--bg-surface);
            padding: 25px;
            border-radius: 15px;
            margin-bottom: 30px;
            border-left: 4px solid var(--primary);
        }

        h1 {
            font-family: var(--font-headings);
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--primary);
        }

        h2 {
            font-family: var(--font-headings);
            font-size: 20px;
            margin: 30px 0 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        h2::before {
            content: '';
            width: 4px;
            height: 20px;
            background: var(--secondary);
            border-radius: 2px;
        }

        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 30px;
        }

        .game-card {
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s;
            border: 1px solid var(--border-default);
        }

        .game-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
        }

        .game-card img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            display: block;
        }

        .game-card h3 {
            padding: 10px;
            font-size: 14px;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            color: var(--text-secondary);
        }

        .payments-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-bottom: 30px;
        }

        .payment-item {
            background: var(--bg-elevated);
            padding: 15px 5px;
            border-radius: 10px;
            text-align: center;
            font-size: 11px;
            color: var(--text-secondary);
        }

        .payment-item i {
            font-size: 20px;
            color: var(--primary);
            margin-bottom: 8px;
            display: block;
        }

        .guides-container {
            display: grid;
            gap: 15px;
            margin-bottom: 30px;
        }

        .guide-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
        }

        .guide-card h3 {
            color: var(--primary);
            margin-bottom: 10px;
        }

        .marquee-container {
            background: var(--bg-surface);
            padding: 15px 0;
            overflow: hidden;
            border-radius: 10px;
            margin-bottom: 30px;
        }

        .marquee-track {
            display: flex;
            gap: 30px;
            animation: scroll 40s linear infinite;
            white-space: nowrap;
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .winner-pill {
            display: flex;
            align-items: center;
            gap: 10px;
            background: var(--bg-elevated);
            padding: 8px 15px;
            border-radius: 20px;
            border: 1px solid var(--border-default);
        }

        .winner-pill span {
            color: var(--secondary);
            font-weight: bold;
        }

        .providers-wall {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 30px;
        }

        .provider-box {
            background: linear-gradient(45deg, var(--bg-elevated), #333);
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            font-weight: bold;
            color: var(--text-primary);
        }

        .reviews-grid {
            display: grid;
            gap: 15px;
            margin-bottom: 30px;
        }

        .review-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 15px;
            border: 1px solid var(--border-default);
        }

        .review-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }

        .stars {
            color: #FFCC00;
        }

        .faq-container {
            margin-bottom: 30px;
        }

        .faq-item {
            background: var(--bg-surface);
            margin-bottom: 10px;
            border-radius: 10px;
            padding: 20px;
        }

        .faq-item h3 {
            font-size: 16px;
            margin-bottom: 10px;
            color: var(--primary);
        }

        .security-section {
            background: #111;
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            border: 1px dashed var(--border-strong);
        }

        .security-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 20px 0;
            font-size: 24px;
            color: var(--secondary);
        }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-overlay);
            backdrop-filter: blur(15px);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
        }

        .nav-item {
            text-align: center;
            font-size: 11px;
            color: var(--text-secondary);
        }

        .nav-item i {
            font-size: 18px;
            display: block;
            margin-bottom: 4px;
        }

        footer {
            background: var(--bg-surface);
            padding: 40px 20px 100px;
            border-top: 2px solid var(--primary);
        }

        .footer-contact {
            text-align: center;
            margin-bottom: 30px;
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 30px;
            font-size: 13px;
        }

        .copyright {
            text-align: center;
            font-size: 12px;
            color: var(--text-muted);
            border-top: 1px solid var(--border-default);
            padding-top: 20px;
        }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .guides-container, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
            .payments-grid { grid-template-columns: repeat(8, 1fr); }
            .providers-wall { grid-template-columns: repeat(4, 1fr); }
        }