:root {
            --primary-bg: #1a1d24;
            --secondary-bg: #252a34;
            --accent-gold: #FFD700;
            --cta-gradient: linear-gradient(135deg, #FF6B35, #FF2E63);
            --text-main: #ffffff;
            --text-muted: #a0a0a0;
            --border-radius: 12px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--primary-bg);
            color: var(--text-main);
            line-height: 1.6;
            padding-bottom: 70px;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        header {
            background-color: rgba(26, 29, 36, 0.95);
            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 rgba(255, 215, 0, 0.2);
        }
        .header-left {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .header-left img {
            width: 25px;
            height: 25px;
            border-radius: 4px;
        }
        .header-left strong {
            font-size: 16px;
            font-weight: normal;
            color: var(--accent-gold);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .header-right {
            display: flex;
            gap: 10px;
        }
        .btn {
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: opacity 0.3s;
        }
        .btn-login {
            background: transparent;
            color: var(--text-main);
            border: 1px solid var(--accent-gold);
        }
        .btn-register {
            background: var(--cta-gradient);
            color: white;
        }
        .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: radial-gradient(circle, #2c313c 0%, #1a1d24 100%);
            margin: 20px 15px;
            padding: 20px;
            border-radius: var(--border-radius);
            text-align: center;
            border: 1px solid var(--accent-gold);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.15);
        }
        .jackpot-title {
            color: var(--accent-gold);
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 10px;
            text-transform: uppercase;
        }
        .jackpot-amount {
            font-size: 32px;
            font-weight: 800;
            color: #ffffff;
            font-family: monospace;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }
        .intro-card {
            margin: 20px 15px;
            padding: 20px;
            background-color: var(--secondary-bg);
            border-radius: var(--border-radius);
            text-align: center;
        }
        .intro-card h1 {
            font-size: 20px;
            color: var(--accent-gold);
            margin-bottom: 10px;
        }
        .intro-card p {
            font-size: 14px;
            color: var(--text-muted);
        }
        .section-title {
            padding: 0 15px;
            margin: 25px 0 15px;
            font-size: 18px;
            border-left: 4px solid var(--accent-gold);
            margin-left: 15px;
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            padding: 0 15px;
        }
        .game-card {
            background-color: var(--secondary-bg);
            border-radius: var(--border-radius);
            overflow: hidden;
            transition: transform 0.2s;
        }
        .game-card img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            display: block;
        }
        .game-info {
            padding: 8px;
        }
        .game-info h3 {
            font-size: 13px;
            margin-bottom: 4px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .game-info p {
            font-size: 11px;
            color: var(--text-muted);
        }
        .payment-methods {
            margin: 30px 15px;
            padding: 20px;
            background: #12141a;
            border-radius: var(--border-radius);
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            opacity: 0.8;
        }
        .payment-methods i {
            font-size: 30px;
            color: var(--text-muted);
        }
        .guidelines {
            padding: 20px 15px;
            display: grid;
            gap: 15px;
        }
        .guide-item {
            background: var(--secondary-bg);
            padding: 15px;
            border-radius: var(--border-radius);
        }
        .guide-item h2 {
            font-size: 16px;
            color: var(--accent-gold);
            margin-bottom: 8px;
        }
        .winners-marquee {
            background: #12141a;
            padding: 15px 0;
            overflow: hidden;
            white-space: nowrap;
            margin: 20px 0;
        }
        .marquee-content {
            display: inline-block;
            animation: marquee 40s linear infinite;
        }
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .winner-tag {
            display: inline-flex;
            align-items: center;
            background: var(--secondary-bg);
            padding: 8px 15px;
            margin: 0 10px;
            border-radius: 20px;
            font-size: 12px;
            border: 1px solid rgba(255, 215, 0, 0.1);
        }
        .winner-tag span {
            color: var(--accent-gold);
            margin-left: 8px;
            font-weight: bold;
        }
        .providers-wall {
            padding: 20px 15px;
            text-align: center;
            background: var(--secondary-bg);
            margin: 20px 15px;
            border-radius: var(--border-radius);
        }
        .providers-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            color: var(--text-muted);
            font-weight: bold;
            font-size: 14px;
        }
        .reviews-section {
            padding: 0 15px;
            display: grid;
            gap: 15px;
        }
        .review-card {
            background: var(--secondary-bg);
            padding: 15px;
            border-radius: var(--border-radius);
            position: relative;
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-header i {
            font-size: 24px;
            color: var(--accent-gold);
        }
        .stars {
            color: var(--accent-gold);
            font-size: 12px;
        }
        .faq-section {
            padding: 20px 15px;
        }
        .faq-item {
            margin-bottom: 15px;
            background: var(--secondary-bg);
            border-radius: var(--border-radius);
            padding: 15px;
        }
        .faq-item h2 {
            font-size: 15px;
            color: var(--accent-gold);
            margin-bottom: 8px;
        }
        .security-section {
            margin: 20px 15px;
            padding: 20px;
            background: #12141a;
            border-radius: var(--border-radius);
            text-align: center;
        }
        .security-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
            font-size: 24px;
            color: #4CAF50;
        }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: #12141a;
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid rgba(255, 215, 0, 0.3);
            z-index: 1001;
        }
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 11px;
            color: var(--text-muted);
        }
        .nav-item i {
            font-size: 20px;
            margin-bottom: 4px;
        }
        .nav-item:nth-child(3) i {
            color: var(--accent-gold);
            font-size: 24px;
            transform: translateY(-5px);
        }
        footer {
            background: #0d0f13;
            padding: 30px 15px 100px;
            text-align: center;
        }
        .footer-contact {
            margin-bottom: 25px;
        }
        .footer-contact a {
            display: block;
            color: var(--accent-gold);
            margin: 5px 0;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 25px;
            font-size: 13px;
            color: var(--text-muted);
        }
        .copyright {
            font-size: 11px;
            color: #555;
        }