:root {
            --primary: #d4af37;
            --secondary: #1f2229;
            --bg-dark: #0d1117;
            --text-light: #f0f2f5;
            --accent: #ffd700;
            --radius: 12px;
            --shadow: 0 4px 15px rgba(0,0,0,0.5);
        }
        * { 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: var(--secondary);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--primary);
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 5px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--primary); }
        .header-right { display: flex; gap: 10px; }
        .btn-login, .btn-reg {
            padding: 8px 15px;
            border-radius: 20px;
            border: none;
            font-weight: bold;
            cursor: pointer;
            font-size: 14px;
            transition: transform 0.2s;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-reg { background: var(--primary); color: #000; }
        .btn-reg:active, .btn-login:active { transform: scale(0.95); }
        main { max-width: 1000px; margin: 0 auto; padding: 15px; }
        .banner-container { margin-bottom: 20px; cursor: pointer; }
        .banner-container img {
            width: 100%;
            height: auto;
            aspect-ratio: 2/1;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            display: block;
        }
        .jackpot-section {
            background: linear-gradient(45deg, #1a1a1a, #2c2c2c);
            padding: 20px;
            border-radius: var(--radius);
            text-align: center;
            margin-bottom: 25px;
            border: 1px solid var(--primary);
        }
        .jackpot-title { font-size: 14px; color: var(--primary); text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount {
            font-size: 32px;
            font-weight: 800;
            color: #fff;
            text-shadow: 0 0 10px var(--primary);
            margin: 10px 0;
        }
        .intro-card {
            background: var(--secondary);
            padding: 20px;
            border-radius: var(--radius);
            margin-bottom: 25px;
            border-left: 4px solid var(--primary);
        }
        .intro-card h1 { font-size: 20px; color: var(--primary); margin-bottom: 10px; }
        .section-title { font-size: 18px; margin: 20px 0 15px; display: flex; align-items: center; gap: 10px; }
        .section-title::after { content: ''; flex: 1; height: 1px; background: rgba(212, 175, 55, 0.3); }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
        .game-card {
            background: var(--secondary);
            border-radius: var(--radius);
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            transition: translateY -5px;
            border: 1px solid transparent;
        }
        .game-card:hover { border-color: var(--primary); }
        .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 p { font-size: 12px; color: #888; }
        .payments-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-bottom: 25px;
        }
        .payment-item {
            background: var(--secondary);
            padding: 15px 5px;
            border-radius: var(--radius);
            text-align: center;
            font-size: 10px;
        }
        .payment-item i { font-size: 24px; color: var(--primary); margin-bottom: 8px; display: block; }
        .guide-section {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            margin-bottom: 25px;
        }
        .guide-card { background: var(--secondary); padding: 15px; border-radius: var(--radius); }
        .guide-card h2 { font-size: 16px; margin-bottom: 10px; color: var(--primary); }
        .win-marquee {
            background: #000;
            padding: 10px;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 25px;
            white-space: nowrap;
        }
        .marquee-content {
            display: inline-block;
            animation: scroll 30s linear infinite;
        }
        .win-item { display: inline-block; margin-right: 30px; font-size: 13px; }
        .win-item span { color: var(--primary); font-weight: bold; }
        @keyframes scroll { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        .providers-wall {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin-bottom: 25px;
            padding: 15px;
            background: var(--secondary);
            border-radius: var(--radius);
        }
        .provider-tag { background: #121417; padding: 5px 15px; border-radius: 20px; font-size: 12px; border: 1px solid #333; }
        .reviews-section { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .review-card { background: var(--secondary); padding: 15px; border-radius: var(--radius); position: relative; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--primary); }
        .stars { color: var(--accent); font-size: 12px; }
        .review-date { font-size: 11px; color: #666; margin-left: auto; }
        .faq-section { margin-bottom: 25px; }
        .faq-item { background: var(--secondary); margin-bottom: 10px; border-radius: var(--radius); padding: 15px; }
        .faq-item h3 { font-size: 15px; color: var(--primary); margin-bottom: 8px; }
        .security-section {
            background: #090c10;
            padding: 20px;
            border-radius: var(--radius);
            text-align: center;
            border: 1px dashed #333;
        }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 20px; color: var(--primary); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background: var(--secondary);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid #333;
            z-index: 1001;
        }
        .nav-item { text-decoration: none; color: #888; text-align: center; font-size: 11px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 2px; }
        .nav-item:active { color: var(--primary); }
        footer { background: #07090d; padding: 30px 15px 100px; border-top: 1px solid #1a1d24; }
        .footer-contacts { display: flex; justify-content: center; gap: 15px; margin-bottom: 20px; }
        .footer-contacts a { color: var(--primary); text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; text-align: center; margin-bottom: 20px; }
        .footer-links a { color: #666; text-decoration: none; font-size: 12px; }
        .footer-copy { text-align: center; font-size: 11px; color: #444; }