:root {
            --bg-dark: #1a1d24;
            --card-bg: #252a34;
            --accent-gold: #FFD700;
            --cta-gradient: linear-gradient(135deg, #FF6B35, #FF2E63);
            --text-white: #ffffff;
            --text-gray: #a0a0a0;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }
        body {
            background-color: var(--bg-dark);
            color: var(--text-white);
            line-height: 1.6;
            padding-bottom: 70px;
        }
        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 #333;
        }
        .header-left {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .header-left img {
            width: 25px;
            height: 25px;
            border-radius: 5px;
        }
        .header-left strong {
            font-size: 16px;
            font-weight: normal;
            color: var(--accent-gold);
        }
        .header-right {
            display: flex;
            gap: 8px;
        }
        .btn {
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
            border: none;
            transition: transform 0.2s;
        }
        .btn-login {
            background: transparent;
            color: var(--text-white);
            border: 1px solid var(--text-white);
        }
        .btn-register {
            background: var(--cta-gradient);
            color: white;
        }
        .main-banner {
            width: 100%;
            aspect-ratio: 2 / 1;
            cursor: pointer;
        }
        .main-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .jackpot-container {
            margin: 20px 15px;
            background: #000;
            border: 2px solid var(--accent-gold);
            border-radius: 15px;
            padding: 15px;
            text-align: center;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
        }
        .jackpot-label {
            color: var(--accent-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 var(--accent-gold);
        }
        .intro-card {
            margin: 20px 15px;
            background: var(--card-bg);
            padding: 20px;
            border-radius: 15px;
            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-gray);
        }
        .section-title {
            margin: 25px 15px 15px;
            font-size: 18px;
            border-left: 4px solid var(--accent-gold);
            padding-left: 10px;
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            padding: 0 15px;
        }
        .game-card {
            background: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            display: block;
        }
        .game-card img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            display: block;
        }
        .game-info {
            padding: 8px;
        }
        .game-info h3 {
            font-size: 13px;
            color: var(--text-white);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .game-provider {
            font-size: 11px;
            color: var(--accent-gold);
        }
        .payment-licensing {
            margin: 30px 15px;
            background: var(--card-bg);
            padding: 20px;
            border-radius: 15px;
            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-gray);
        }
        .guidelines-section {
            padding: 0 15px;
            margin-top: 30px;
        }
        .guideline-item {
            background: var(--card-bg);
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 10px;
        }
        .guideline-item h2 {
            font-size: 16px;
            color: var(--accent-gold);
            margin-bottom: 5px;
        }
        .marquee-container {
            background: #111;
            padding: 15px 0;
            overflow: hidden;
            margin: 20px 0;
            border-top: 1px solid #333;
            border-bottom: 1px solid #333;
        }
        .marquee-content {
            display: flex;
            animation: marquee 40s linear infinite;
            white-space: nowrap;
        }
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .win-item {
            padding: 0 20px;
            font-size: 13px;
            color: var(--text-gray);
        }
        .win-item span {
            color: var(--accent-gold);
            font-weight: bold;
        }
        .providers-cloud {
            padding: 20px 15px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }
        .provider-tag {
            background: var(--card-bg);
            padding: 5px 12px;
            border-radius: 5px;
            font-size: 12px;
            border: 1px solid #444;
        }
        .reviews-section {
            padding: 0 15px;
            margin-top: 30px;
        }
        .review-card {
            background: var(--card-bg);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-avatar {
            width: 40px;
            height: 40px;
            background: #444;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-gold);
        }
        .stars {
            color: var(--accent-gold);
            font-size: 12px;
        }
        .faq-section {
            padding: 0 15px;
            margin-top: 30px;
        }
        .faq-item {
            margin-bottom: 15px;
            border-bottom: 1px solid #333;
            padding-bottom: 15px;
        }
        .faq-item h2 {
            font-size: 15px;
            color: var(--accent-gold);
            margin-bottom: 8px;
        }
        .faq-item p {
            font-size: 14px;
            color: var(--text-gray);
        }
        .security-section {
            margin: 30px 15px;
            padding: 20px;
            background: #111;
            border-radius: 15px;
            text-align: center;
            border: 1px dashed #444;
        }
        .security-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
            font-size: 30px;
            color: var(--accent-gold);
        }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background: var(--bg-dark);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid #333;
            z-index: 1001;
        }
        .nav-item {
            text-align: center;
            text-decoration: none;
            color: var(--text-gray);
            font-size: 11px;
        }
        .nav-item i {
            display: block;
            font-size: 20px;
            margin-bottom: 3px;
        }
        footer {
            background: #000;
            padding: 40px 15px 80px;
            text-align: center;
        }
        .footer-contacts {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 25px;
        }
        .footer-contacts a {
            color: var(--accent-gold);
            text-decoration: none;
            font-size: 14px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 25px;
        }
        .footer-grid a {
            color: var(--text-gray);
            text-decoration: none;
            font-size: 12px;
        }
        .copyright {
            font-size: 12px;
            color: #666;
        }