:root {
            --primary-bg: #1a1d24;
            --secondary-bg: #242832;
            --accent-gold: #FFD700;
            --text-white: #ffffff;
            --text-gray: #a0a0a0;
            --btn-gradient: linear-gradient(135deg, #FF6B35 0%, #FF2E63 100%);
            --card-radius: 12px;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            background-color: var(--primary-bg);
            color: var(--text-white);
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            padding-bottom: 70px;
        }
        header {
            background-color: var(--secondary-bg);
            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;
            border-radius: 5px;
        }
        .header-left strong {
            font-size: 16px;
            font-weight: normal;
            color: var(--accent-gold);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .header-right {
            display: flex;
            gap: 8px;
        }
        .btn {
            border: none;
            padding: 8px 12px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            font-size: 13px;
            transition: opacity 0.3s;
        }
        .btn-login {
            background: transparent;
            color: var(--text-white);
            border: 1px solid var(--text-gray);
        }
        .btn-register {
            background: var(--btn-gradient);
            color: white;
        }
        .banner {
            width: 100%;
            display: block;
            aspect-ratio: 2/1;
            cursor: pointer;
        }
        .banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .jackpot-container {
            background: var(--secondary-bg);
            margin: 15px;
            padding: 20px;
            border-radius: var(--card-radius);
            text-align: center;
            border: 1px solid rgba(255, 215, 0, 0.3);
        }
        .jackpot-label {
            color: var(--accent-gold);
            font-size: 14px;
            font-weight: bold;
            text-transform: uppercase;
            margin-bottom: 5px;
        }
        .jackpot-amount {
            font-size: 32px;
            font-weight: 800;
            background: linear-gradient(to bottom, #fff, #FFD700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-family: monospace;
        }
        .intro-card {
            margin: 15px;
            padding: 20px;
            background: var(--secondary-bg);
            border-radius: var(--card-radius);
        }
        .intro-card h1 {
            font-size: 20px;
            color: var(--accent-gold);
            margin-bottom: 10px;
        }
        .section-title {
            margin: 20px 15px 10px;
            font-size: 18px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .section-title i {
            color: var(--accent-gold);
        }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 0 15px;
        }
        .game-card {
            background: var(--secondary-bg);
            border-radius: var(--card-radius);
            overflow: hidden;
            text-decoration: none;
            color: 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: 13px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .game-provider {
            font-size: 11px;
            color: var(--text-gray);
        }
        .payment-section, .provider-section {
            margin: 20px 15px;
            padding: 20px;
            background: var(--secondary-bg);
            border-radius: var(--card-radius);
            text-align: center;
        }
        .icon-flex {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-top: 15px;
        }
        .icon-flex i {
            font-size: 24px;
            color: var(--text-gray);
        }
        .provider-wall {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-top: 10px;
        }
        .provider-name {
            font-size: 12px;
            background: rgba(255,255,255,0.05);
            padding: 5px;
            border-radius: 4px;
        }
        .guidelines {
            padding: 15px;
        }
        .guideline-item {
            margin-bottom: 15px;
            background: var(--secondary-bg);
            padding: 15px;
            border-radius: var(--card-radius);
        }
        .guideline-item h2 {
            font-size: 16px;
            color: var(--accent-gold);
            margin-bottom: 8px;
        }
        .marquee {
            background: rgba(0,0,0,0.3);
            margin: 15px 0;
            padding: 10px 0;
            overflow: hidden;
            white-space: nowrap;
        }
        .marquee-content {
            display: inline-block;
            animation: scroll 30s linear infinite;
        }
        .winner-tag {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--secondary-bg);
            margin: 0 10px;
            padding: 5px 15px;
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.1);
        }
        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .comments {
            padding: 0 15px;
            display: grid;
            gap: 15px;
        }
        .comment-card {
            background: var(--secondary-bg);
            padding: 15px;
            border-radius: var(--card-radius);
        }
        .user-meta {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .user-avatar {
            width: 40px;
            height: 40px;
            background: #3a3f4b;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .stars { color: var(--accent-gold); font-size: 12px; }
        .faq-section {
            padding: 15px;
        }
        .faq-item {
            margin-bottom: 15px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 15px;
        }
        .faq-item h2 { font-size: 15px; color: var(--accent-gold); margin-bottom: 5px; }
        .security-section {
            margin: 20px 15px;
            text-align: center;
            font-size: 12px;
            color: var(--text-gray);
        }
        .security-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 10px;
            font-size: 30px;
        }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--secondary-bg);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid rgba(255,255,255,0.1);
            z-index: 1001;
        }
        .nav-item {
            text-decoration: none;
            color: var(--text-gray);
            font-size: 11px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .nav-item i { font-size: 20px; margin-bottom: 3px; }
        .nav-item:nth-child(3) {
            margin-top: -25px;
            background: var(--btn-gradient);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            justify-content: center;
            color: white;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        }
        footer {
            padding: 30px 15px;
            background: #111419;
            text-align: center;
        }
        .footer-contacts {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        .footer-contacts a { color: var(--accent-gold); text-decoration: none; font-size: 14px; }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 20px;
        }
        .footer-links a { color: var(--text-gray); text-decoration: none; font-size: 12px; }
        .copyright { font-size: 11px; color: #555; }