:root {
            --bg-dark: #1a1d24;
            --accent-gold: #FFD700;
            --cta-gradient: linear-gradient(135deg, #FF6B35 0%, #FF2E63 100%);
            --card-bg: #252a34;
            --text-light: #ffffff;
            --text-muted: #b0b3b8;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.6;
            padding-bottom: 70px;
        }
        header {
            background-color: #0f1115;
            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-logo {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .header-logo img {
            width: 25px;
            height: 25px;
            border-radius: 4px;
        }
        .header-logo strong {
            font-size: 16px;
            font-weight: normal;
            color: var(--accent-gold);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .header-auth {
            display: flex;
            gap: 8px;
        }
        .btn {
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
            border: none;
            transition: transform 0.2s;
        }
        .btn:active {
            transform: scale(0.95);
        }
        .btn-login {
            background: transparent;
            color: var(--text-light);
            border: 1px solid var(--text-muted);
        }
        .btn-register {
            background: var(--cta-gradient);
            color: white;
        }
        .banner {
            width: 100%;
            cursor: pointer;
            display: block;
        }
        .banner img {
            width: 100%;
            height: auto;
            aspect-ratio: 2 / 1;
            object-fit: cover;
        }
        .jackpot-container {
            background: radial-gradient(circle, #2c3e50 0%, #000000 100%);
            padding: 20px;
            text-align: center;
            margin: 15px;
            border-radius: 15px;
            border: 2px solid var(--accent-gold);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
        }
        .jackpot-title {
            font-size: 14px;
            color: var(--accent-gold);
            text-transform: uppercase;
            margin-bottom: 5px;
        }
        .jackpot-amount {
            font-size: 28px;
            font-weight: 800;
            color: #fff;
            text-shadow: 0 0 10px #FFD700;
        }
        .platform-intro {
            padding: 20px;
            margin: 15px;
            background: var(--card-bg);
            border-radius: 15px;
            text-align: center;
        }
        .platform-intro h1 {
            font-size: 20px;
            color: var(--accent-gold);
            margin-bottom: 10px;
        }
        .platform-intro p {
            font-size: 14px;
            color: var(--text-muted);
        }
        .section-title {
            padding: 0 15px;
            margin: 20px 0 10px;
            font-size: 18px;
            border-left: 4px solid var(--accent-gold);
            margin-left: 15px;
        }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 15px;
        }
        .game-card {
            background: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            transition: transform 0.3s;
        }
        .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-bottom: 4px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .game-info span {
            font-size: 12px;
            color: var(--text-muted);
        }
        .trust-section {
            background: #0f1115;
            padding: 20px 15px;
            margin: 20px 0;
            text-align: center;
        }
        .trust-icons {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            align-items: center;
            justify-items: center;
            opacity: 0.7;
        }
        .trust-icons i {
            font-size: 24px;
        }
        .guidelines {
            padding: 15px;
        }
        .guideline-item {
            background: var(--card-bg);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 12px;
        }
        .guideline-item h2 {
            font-size: 16px;
            color: var(--accent-gold);
            margin-bottom: 8px;
        }
        .guideline-item p {
            font-size: 13px;
            color: var(--text-muted);
        }
        .marquee-container {
            background: #000;
            padding: 10px 0;
            overflow: hidden;
            white-space: nowrap;
            margin: 20px 0;
        }
        .marquee-content {
            display: inline-block;
            animation: scroll 40s linear infinite;
        }
        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .win-tag {
            display: inline-block;
            background: #252a34;
            padding: 8px 15px;
            margin-right: 15px;
            border-radius: 20px;
            border-left: 3px solid #00ff00;
            font-size: 12px;
        }
        .win-tag strong { color: var(--accent-gold); }
        .providers-wall {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            padding: 15px;
            background: #0f1115;
        }
        .provider-tag {
            background: #252a34;
            padding: 5px 12px;
            border-radius: 5px;
            font-size: 13px;
            color: var(--text-muted);
        }
        .reviews-section {
            padding: 15px;
        }
        .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-header i {
            font-size: 30px;
            color: var(--accent-gold);
        }
        .review-stars { color: var(--accent-gold); font-size: 12px; }
        .review-date { font-size: 11px; color: var(--text-muted); float: right; }
        .faq-section { padding: 15px; }
        .faq-item {
            margin-bottom: 15px;
            border-bottom: 1px solid #333;
            padding-bottom: 10px;
        }
        .faq-item h2 { font-size: 16px; margin-bottom: 8px; color: var(--accent-gold); }
        .faq-item p { font-size: 14px; color: var(--text-muted); }
        .security-section {
            padding: 20px 15px;
            text-align: center;
            background: #0f1115;
            font-size: 12px;
        }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background: #0f1115;
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid #333;
            z-index: 1000;
        }
        .nav-item {
            text-decoration: none;
            color: var(--text-muted);
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 11px;
        }
        .nav-item i { font-size: 18px; margin-bottom: 4px; }
        footer {
            background: #0a0c10;
            padding: 30px 15px 80px;
            text-align: center;
        }
        .footer-contacts { margin-bottom: 25px; }
        .footer-contacts a {
            color: var(--text-light);
            margin: 0 10px;
            text-decoration: none;
            font-size: 14px;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 25px;
        }
        .footer-links a {
            color: var(--text-muted);
            font-size: 12px;
            text-decoration: none;
        }
        .copyright { font-size: 11px; color: #555; }