:root {
            --bg-dark: #1a1d24;
            --bg-card: #252a34;
            --gold: #FFD700;
            --white: #ffffff;
            --text-gray: #b1b1b1;
            --cta-gradient: linear-gradient(135deg, #FF6B35 0%, #FF2E63 100%);
        }
        body {
            background-color: var(--bg-dark);
            color: var(--white);
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            margin: 0;
            padding: 0;
            line-height: 1.6;
            overflow-x: hidden;
        }
        header {
            background: rgba(26, 29, 36, 0.95);
            padding: 10px 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255, 215, 0, 0.2);
        }
        .header-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            color: var(--white);
        }
        .header-logo img {
            width: 25px;
            height: 25px;
            border-radius: 4px;
        }
        .header-logo strong {
            font-size: 16px;
            font-weight: normal;
        }
        .header-actions {
            display: flex;
            gap: 10px;
        }
        .btn-login, .btn-register {
            border: none;
            border-radius: 20px;
            padding: 6px 16px;
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
            transition: opacity 0.3s;
        }
        .btn-login {
            background: transparent;
            color: var(--white);
            border: 1px solid var(--white);
        }
        .btn-register {
            background: var(--cta-gradient);
            color: var(--white);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px 80px 15px;
        }
        .banner-link {
            display: block;
            margin-top: 10px;
            border-radius: 12px;
            overflow: hidden;
        }
        .banner-img {
            width: 100%;
            display: block;
            aspect-ratio: 2 / 1;
            object-fit: cover;
        }
        .jackpot-section {
            background: #000;
            margin: 20px 0;
            padding: 20px;
            border-radius: 15px;
            border: 2px solid var(--gold);
            text-align: center;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
        }
        .jackpot-title {
            color: var(--gold);
            font-size: 18px;
            text-transform: uppercase;
            margin-bottom: 10px;
            letter-spacing: 2px;
        }
        .jackpot-amount {
            font-size: 32px;
            font-weight: 900;
            color: var(--white);
            font-family: monospace;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }
        .intro-card {
            background: var(--bg-card);
            padding: 25px;
            border-radius: 15px;
            margin: 20px 0;
            text-align: center;
        }
        .intro-card h1 {
            color: var(--gold);
            font-size: 22px;
            margin: 0 0 15px 0;
        }
        .section-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 30px 0 15px 0;
        }
        .section-header h2 {
            font-size: 18px;
            color: var(--gold);
            margin: 0;
        }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }
        .game-card {
            background: var(--bg-card);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            color: var(--white);
            transition: transform 0.2s;
        }
        .game-card img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            display: block;
        }
        .game-info {
            padding: 10px;
        }
        .game-info h3 {
            font-size: 14px;
            margin: 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .game-provider {
            font-size: 11px;
            color: var(--text-gray);
            margin-top: 4px;
        }
        .payment-methods {
            background: var(--bg-card);
            padding: 20px;
            border-radius: 15px;
            margin: 30px 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }
        .payment-methods i {
            font-size: 30px;
            color: var(--text-gray);
        }
        .guidelines-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            margin: 20px 0;
        }
        .guideline-item {
            background: var(--bg-card);
            padding: 20px;
            border-radius: 12px;
            border-left: 4px solid var(--gold);
        }
        .marquee-wrapper {
            background: #000;
            padding: 15px 0;
            margin: 30px -15px;
            overflow: hidden;
            white-space: nowrap;
        }
        .marquee-content {
            display: inline-block;
            animation: marquee 40s linear infinite;
        }
        .winner-item {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--bg-card);
            padding: 8px 15px;
            border-radius: 20px;
            margin-right: 20px;
            font-size: 13px;
        }
        .winner-amount {
            color: var(--gold);
            font-weight: bold;
        }
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .providers-wall {
            background: var(--bg-card);
            padding: 20px;
            border-radius: 15px;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 10px;
            text-align: center;
            font-weight: bold;
            color: var(--text-gray);
            font-size: 12px;
        }
        .reviews-section {
            margin: 30px 0;
        }
        .review-card {
            background: var(--bg-card);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 15px;
        }
        .review-user {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-user i {
            font-size: 24px;
            color: var(--gold);
        }
        .stars {
            color: var(--gold);
            font-size: 12px;
        }
        .review-date {
            font-size: 11px;
            color: var(--text-gray);
            margin-left: auto;
        }
        .faq-section {
            margin: 30px 0;
        }
        .faq-item {
            background: var(--bg-card);
            margin-bottom: 10px;
            border-radius: 10px;
            padding: 15px;
        }
        .faq-item h3 {
            font-size: 15px;
            color: var(--gold);
            margin: 0 0 10px 0;
        }
        .faq-item p {
            font-size: 14px;
            margin: 0;
            color: var(--text-gray);
        }
        .security-section {
            background: var(--bg-card);
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            border: 1px dashed var(--gold);
        }
        .security-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
            font-size: 24px;
        }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #121418;
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            z-index: 1001;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
        }
        .nav-item {
            text-decoration: none;
            color: var(--text-gray);
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 11px;
            gap: 4px;
        }
        .nav-item i {
            font-size: 20px;
        }
        .nav-item:nth-child(3) i {
            color: var(--gold);
        }
        footer {
            background: #0d0f13;
            padding: 40px 15px 100px 15px;
            text-align: center;
        }
        .footer-social {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 30px;
        }
        .footer-social a {
            color: var(--white);
            text-decoration: none;
            font-size: 14px;
        }
        .footer-links {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 15px;
            margin-bottom: 30px;
        }
        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            font-size: 13px;
        }
        .footer-copy {
            font-size: 11px;
            color: var(--text-gray);
            border-top: 1px solid #252a34;
            padding-top: 20px;
        }