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