:root {
            --primary-gold: #D4AF37;
            --bright-gold: #F9E27E;
            --mexico-green: #006847;
            --success-green: #00A859;
            --poker-red: #C8102E;
            --bg-main: #0A0A0A;
            --bg-secondary: #1A1A1A;
            --bg-overlay: #262626;
            --premium-gradient: linear-gradient(180deg, #1A1A1A 0%, #0A0A0A 100%);
            --text-title: #FFFFFF;
            --text-body: #E0E0E0;
            --text-dim: #808080;
            --border-subtle: #333333;
            --border-gold: rgba(212, 175, 55, 0.3);
        }

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

        body {
            background-color: var(--bg-main);
            color: var(--text-body);
            font-family: 'Roboto', sans-serif;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3 {
            font-family: 'Montserrat', sans-serif;
            color: var(--text-title);
            font-weight: 700;
        }

        h1 { font-size: 28px; line-height: 1.2; margin-bottom: 15px; text-align: center; color: var(--bright-gold); }
        h2 { font-size: 24px; margin: 30px 0 20px; text-align: center; border-left: 4px solid var(--primary-gold); padding-left: 15px; }
        h3 { font-size: 16px; margin-top: 10px; font-weight: 600; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; }

        header {
            background-color: var(--bg-secondary);
            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-subtle);
        }

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

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

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

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

        .btn {
            padding: 8px 16px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
            transition: all 0.3s;
        }

        .btn-login {
            background: transparent;
            color: var(--primary-gold);
            border: 1px solid var(--primary-gold);
        }

        .btn-register {
            background: var(--primary-gold);
            color: #000;
        }

        .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: linear-gradient(45deg, #000, #1a1a1a);
            padding: 20px;
            text-align: center;
            margin: 20px 15px;
            border-radius: 15px;
            border: 1px solid var(--border-gold);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }

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

        .jackpot-amount {
            font-family: 'JetBrains Mono', monospace;
            font-size: 32px;
            color: var(--bright-gold);
            font-weight: 900;
            text-shadow: 0 0 10px rgba(249, 226, 126, 0.5);
        }

        .platform-intro {
            padding: 25px 15px;
            background: var(--bg-secondary);
            margin: 20px 15px;
            border-radius: 15px;
            text-align: center;
        }

        .platform-intro p {
            font-size: 16px;
            color: var(--text-body);
        }

        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            padding: 0 15px;
        }

        .game-card {
            background: var(--bg-overlay);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            border: 1px solid var(--border-subtle);
            transition: transform 0.2s;
        }

        .game-card:active { transform: scale(0.95); }

        .game-img-wrapper {
            width: 100%;
            aspect-ratio: 1/1;
            overflow: hidden;
        }

        .game-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .game-info {
            padding: 10px;
        }

        .provider-name {
            font-size: 12px;
            color: var(--primary-gold);
        }

        .trust-section {
            background: var(--bg-secondary);
            padding: 30px 15px;
            margin: 30px 0;
            text-align: center;
        }

        .icons-flex {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }

        .trust-icon {
            font-size: 30px;
            color: var(--text-dim);
        }

        .guidelines-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            padding: 20px 15px;
        }

        .guide-card {
            background: var(--bg-overlay);
            padding: 20px;
            border-radius: 12px;
            border-bottom: 3px solid var(--mexico-green);
        }

        .marquee-container {
            background: var(--bg-secondary);
            padding: 15px 0;
            margin: 25px 0;
            overflow: hidden;
            position: relative;
        }

        .marquee-content {
            display: flex;
            white-space: nowrap;
            animation: marquee 40s linear infinite;
        }

        .winner-tag {
            background: var(--bg-main);
            padding: 10px 20px;
            margin: 0 10px;
            border-radius: 30px;
            border: 1px solid var(--border-gold);
            font-size: 14px;
        }

        .winner-tag span { color: var(--success-green); font-weight: bold; }

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

        .providers-wall {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            padding: 20px;
            color: var(--text-dim);
            font-weight: 700;
        }

        .provider-tag {
            background: var(--bg-overlay);
            padding: 8px 15px;
            border-radius: 5px;
            font-size: 14px;
        }

        .reviews-section {
            padding: 20px 15px;
        }

        .review-card {
            background: var(--bg-overlay);
            padding: 20px;
            border-radius: 15px;
            margin-bottom: 20px;
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
        }

        .review-header i { font-size: 24px; color: var(--primary-gold); }

        .stars { color: #FFC107; font-size: 12px; }

        .faq-section { padding: 20px 15px; }

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

        .faq-item h3 { margin: 0 0 10px 0; color: var(--primary-gold); white-space: normal; }

        .responsible-gaming {
            padding: 30px 15px;
            text-align: center;
            border-top: 1px solid var(--border-subtle);
        }

        .age-badge {
            display: inline-block;
            width: 40px;
            height: 40px;
            border: 2px solid var(--poker-red);
            color: var(--poker-red);
            border-radius: 50%;
            line-height: 36px;
            font-weight: 900;
            margin-bottom: 15px;
        }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 65px;
            background: var(--bg-secondary);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-subtle);
            z-index: 1000;
        }

        .nav-item {
            text-decoration: none;
            color: var(--text-dim);
            text-align: center;
            font-size: 12px;
        }

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

        footer {
            padding: 40px 15px 100px;
            background: #050505;
            text-align: center;
        }

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

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

        .footer-links a, .footer-contact a {
            color: var(--text-dim);
            text-decoration: none;
            font-size: 13px;
        }

        .copyright {
            font-size: 12px;
            color: var(--text-dim);
            margin-top: 20px;
        }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .guidelines-grid { grid-template-columns: 1fr 1fr; }
        }