:root {
            --primary-gold: #d4af37;
            --dark-bg: #1a1d24;
            --card-bg: #252a34;
            --text-white: #ffffff;
            --text-gray: #a0a0a0;
            --accent-red: #ff4d4d;
            --border-radius: 12px;
        }
        body {
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-white);
            line-height: 1.6;
            overflow-x: hidden;
        }
        header {
            background-color: #0f1218;
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }
        .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: normal;
            color: var(--primary-gold);
        }
        .header-right {
            display: flex;
            gap: 8px;
        }
        .btn {
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
            border: none;
            transition: transform 0.2s;
        }
        .btn-login {
            background-color: transparent;
            color: var(--text-white);
            border: 1px solid var(--primary-gold);
        }
        .btn-register {
            background-color: var(--primary-gold);
            color: #000;
        }
        .banner-container {
            width: 100%;
            aspect-ratio: 2/1;
            cursor: pointer;
        }
        .banner-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .jackpot-section {
            background: linear-gradient(145deg, #2c1f05, #000);
            margin: 15px;
            padding: 20px;
            border-radius: var(--border-radius);
            text-align: center;
            border: 2px solid var(--primary-gold);
        }
        .jackpot-title {
            color: var(--primary-gold);
            font-size: 1.2rem;
            margin-bottom: 10px;
            text-transform: uppercase;
            font-weight: bold;
        }
        .jackpot-amount {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text-white);
            font-family: 'Courier New', monospace;
            text-shadow: 0 0 10px var(--primary-gold);
        }
        .jackpot-amount::before {
            content: '$';
            margin-right: 5px;
        }
        .intro-card {
            padding: 20px;
            margin: 15px;
            background-color: var(--card-bg);
            border-radius: var(--border-radius);
        }
        .intro-card h1 {
            font-size: 1.5rem;
            color: var(--primary-gold);
            margin-bottom: 10px;
        }
        .intro-card p {
            color: var(--text-gray);
            font-size: 0.95rem;
        }
        .section-title {
            margin: 20px 15px 10px;
            font-size: 1.3rem;
            border-left: 4px solid var(--primary-gold);
            padding-left: 10px;
        }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 15px;
        }
        .game-card {
            background-color: var(--card-bg);
            border-radius: var(--border-radius);
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s;
        }
        .game-card:active {
            transform: scale(0.95);
        }
        .game-image-wrapper {
            position: relative;
            width: 100%;
            aspect-ratio: 1/1;
        }
        .game-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .game-info {
            padding: 10px;
        }
        .game-info h3 {
            font-size: 0.9rem;
            margin: 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .game-provider {
            font-size: 0.75rem;
            color: var(--primary-gold);
        }
        .payments-licenses {
            background-color: var(--card-bg);
            margin: 15px;
            padding: 15px;
            border-radius: var(--border-radius);
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            text-align: center;
        }
        .payment-item i {
            font-size: 24px;
            color: var(--primary-gold);
            display: block;
            margin-bottom: 5px;
        }
        .payment-item span {
            font-size: 10px;
            color: var(--text-gray);
        }
        .guides-section {
            padding: 15px;
        }
        .guide-card {
            background-color: var(--card-bg);
            padding: 15px;
            border-radius: var(--border-radius);
            margin-bottom: 15px;
        }
        .guide-card h3 {
            color: var(--primary-gold);
            margin-top: 0;
        }
        .marquee-container {
            background-color: #0f1218;
            padding: 10px 0;
            overflow: hidden;
            position: relative;
        }
        .marquee-content {
            display: flex;
            white-space: nowrap;
            animation: marquee 30s linear infinite;
        }
        .marquee-item {
            padding: 0 20px;
            font-size: 0.85rem;
            color: var(--text-gray);
        }
        .marquee-item span {
            color: var(--primary-gold);
            font-weight: bold;
        }
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .providers-wall {
            padding: 15px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }
        .provider-tag {
            background: #252a34;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            border: 1px solid #3d4451;
        }
        .reviews-section {
            padding: 15px;
        }
        .review-card {
            background-color: var(--card-bg);
            padding: 15px;
            border-radius: var(--border-radius);
            margin-bottom: 15px;
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-header i {
            font-size: 24px;
            color: var(--primary-gold);
        }
        .stars {
            color: #ffcc00;
            font-size: 0.8rem;
        }
        .review-date {
            font-size: 0.75rem;
            color: var(--text-gray);
        }
        .faq-section {
            padding: 15px;
        }
        .faq-item {
            background-color: var(--card-bg);
            margin-bottom: 10px;
            border-radius: var(--border-radius);
            padding: 15px;
        }
        .faq-item h3 {
            margin-top: 0;
            font-size: 1rem;
            color: var(--primary-gold);
        }
        .security-section {
            padding: 20px;
            margin: 15px;
            background-color: #12141a;
            border-radius: var(--border-radius);
            text-align: center;
            border: 1px dashed var(--primary-gold);
        }
        .security-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
            font-size: 30px;
            color: var(--primary-gold);
        }
        .age-limit {
            display: inline-block;
            border: 2px solid var(--accent-red);
            color: var(--accent-red);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            line-height: 40px;
            font-weight: bold;
            margin-bottom: 10px;
        }
        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            background-color: #0f1218;
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid #333;
            z-index: 1001;
        }
        .nav-item {
            text-decoration: none;
            color: var(--text-gray);
            text-align: center;
            font-size: 0.7rem;
        }
        .nav-item i {
            display: block;
            font-size: 18px;
            margin-bottom: 3px;
        }
        footer {
            padding: 40px 15px 100px;
            background-color: #0b0d11;
        }
        .footer-social {
            text-align: center;
            margin-bottom: 25px;
        }
        .footer-social a {
            color: var(--text-white);
            margin: 0 10px;
            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-gray);
            text-decoration: none;
            font-size: 0.8rem;
        }
        .footer-bottom {
            text-align: center;
            font-size: 0.75rem;
            color: var(--text-gray);
            border-top: 1px solid #222;
            padding-top: 20px;
        }