:root {
            --primary: #D4AF37;
            --primary-hover: #F1C40F;
            --secondary: #1A1A1A;
            --accent: #00E676;
            --bg-main: #0D0D0D;
            --bg-surface: #161616;
            --bg-elevated: #1F1F1F;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --gold-gradient: linear-gradient(180deg, #D4AF37 0%, #F1C40F 100%);
            --border-subtle: #2D2D2D;
            --font-heading: 'Montserrat', 'Trebuchet MS', sans-serif;
            --font-body: 'Inter', 'Segoe UI', 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-body);
            line-height: 1.5;
            overflow-x: hidden;
        }

        header {
            background-color: var(--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: 8px;
        }

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

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

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

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

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

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

        .banner {
            width: 100%;
            aspect-ratio: 2 / 1;
            cursor: pointer;
        }

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

        .jackpot-container {
            background: radial-gradient(circle, #1F1F1F 0%, #0D0D0D 100%);
            padding: 20px;
            text-align: center;
            margin: 15px;
            border-radius: 12px;
            border: 1px solid var(--primary);
        }

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

        .jackpot-amount {
            font-family: var(--font-heading);
            font-size: 32px;
            font-weight: 900;
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
        }

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

        .intro-card h1 {
            font-family: var(--font-heading);
            font-size: 1.25rem;
            margin-bottom: 10px;
            color: var(--primary);
        }

        .intro-card p {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .section-title {
            padding: 0 15px;
            margin: 20px 0 15px;
            font-family: var(--font-heading);
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-title::before {
            content: "";
            width: 4px;
            height: 18px;
            background: var(--primary);
            display: inline-block;
        }

        .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;
            text-decoration: none;
            transition: transform 0.2s;
            border: 1px solid var(--border-subtle);
        }

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

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

        .game-info {
            padding: 8px;
        }

        .game-info h3 {
            font-size: 0.85rem;
            color: var(--text-primary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-bottom: 2px;
        }

        .game-provider {
            font-size: 0.7rem;
            color: var(--text-secondary);
        }

        .trust-section {
            background: var(--bg-elevated);
            margin: 20px 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
        }

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

        .payment-icons i {
            font-size: 24px;
            color: var(--text-secondary);
        }

        .guidelines-section {
            padding: 0 15px;
            display: grid;
            gap: 15px;
        }

        .guideline-item {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
        }

        .guideline-item h2 {
            font-size: 1rem;
            color: var(--primary);
            margin-bottom: 8px;
        }

        .guideline-item p {
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        .winners-marquee {
            background: var(--secondary);
            padding: 10px 0;
            margin: 20px 0;
            overflow: hidden;
            white-space: nowrap;
        }

        .marquee-content {
            display: inline-block;
            animation: marquee 30s linear infinite;
        }

        .winner-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--bg-elevated);
            padding: 5px 15px;
            border-radius: 20px;
            margin: 0 10px;
            font-size: 0.8rem;
            border: 1px solid var(--border-subtle);
        }

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

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

        .providers-wall {
            padding: 0 15px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin-bottom: 20px;
        }

        .provider-badge {
            background: var(--bg-surface);
            padding: 5px 12px;
            border-radius: 4px;
            font-size: 0.8rem;
            color: var(--text-secondary);
            border: 1px solid var(--border-subtle);
        }

        .reviews-section {
            padding: 0 15px;
            display: grid;
            gap: 15px;
        }

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

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

        .user-meta {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .stars {
            color: #FFD700;
            font-size: 0.8rem;
        }

        .faq-section {
            padding: 0 15px;
            margin-bottom: 80px;
        }

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

        .faq-item h2 {
            font-size: 0.95rem;
            color: var(--primary);
            margin-bottom: 8px;
        }

        .faq-item p {
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        .safety-section {
            text-align: center;
            padding: 20px;
            background: #000;
            margin: 20px 0;
            border-top: 1px solid var(--border-subtle);
        }

        .age-badge {
            display: inline-block;
            border: 2px solid #FF4D4D;
            color: #FF4D4D;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            line-height: 36px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--secondary);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-subtle);
            z-index: 1000;
        }

        .nav-item {
            text-decoration: none;
            color: var(--text-secondary);
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 0.7rem;
            gap: 4px;
        }

        .nav-item i {
            font-size: 1.2rem;
        }

        footer {
            background: #050505;
            padding: 40px 15px 100px;
            border-top: 1px solid var(--border-subtle);
        }

        .footer-socials {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
        }

        .footer-socials a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.9rem;
        }

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

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.8rem;
        }

        .copyright {
            text-align: center;
            font-size: 0.75rem;
            color: var(--text-disabled);
        }