:root {
            --primary: #FFD700;
            --primary-variant: #B8860B;
            --secondary: #00A86B;
            --accent: #FF4500;
            --bg-main: #0D1117;
            --bg-surface: #161B22;
            --bg-elevation: #21262D;
            --text-primary: #FFFFFF;
            --text-secondary: #8B949E;
            --border-default: #30363D;
        }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Inter', 'Roboto', system-ui, sans-serif;
            margin: 0;
            padding-bottom: 80px;
            line-height: 1.5;
        }
        h1, h2, h3 {
            font-family: 'Montserrat', sans-serif;
            margin: 0;
        }
        header {
            background: var(--bg-surface);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-default);
        }
        header .brand {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        header img {
            width: 25px;
            height: 25px;
            border-radius: 4px;
        }
        header strong {
            font-size: 16px;
            font-weight: 400;
            color: var(--primary);
        }
        header .auth-buttons {
            display: flex;
            gap: 8px;
        }
        .btn {
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--primary); color: #0D1117; }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px;
        }
        .banner {
            width: 100%;
            aspect-ratio: 2/1;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 20px;
            cursor: pointer;
        }
        .banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .jackpot-box {
            background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-elevation) 100%);
            border: 2px solid var(--primary);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 25px;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }
        .jackpot-box h2 { color: var(--primary); font-size: 18px; margin-bottom: 10px; }
        .jackpot-amount {
            font-size: 32px;
            font-weight: 800;
            color: #FFFFFF;
            text-shadow: 0 0 10px var(--primary);
        }
        .intro-card {
            background: var(--bg-surface);
            padding: 25px;
            border-radius: 15px;
            margin-bottom: 25px;
            border-left: 4px solid var(--primary);
        }
        .intro-card h1 { font-size: 24px; margin-bottom: 15px; color: var(--primary); }
        .intro-card p { font-size: 16px; color: var(--text-secondary); }
        .section-title {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            border-left: 4px solid var(--secondary);
            padding-left: 10px;
        }
        .section-title h2 { font-size: 20px; }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 30px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            transition: transform 0.2s;
            border: 1px solid var(--border-default);
        }
        .game-card:hover { transform: translateY(-5px); }
        .game-card img {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            display: block;
        }
        .game-card h3 {
            padding: 10px;
            font-size: 14px;
            color: var(--text-primary);
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .payment-methods {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 15px;
            margin-bottom: 30px;
        }
        .payment-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: var(--text-secondary);
        }
        .payment-item i { font-size: 24px; color: var(--primary); }
        .guides-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            margin-bottom: 30px;
        }
        .guide-item {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
        }
        .guide-item h3 { color: var(--secondary); font-size: 18px; margin-bottom: 10px; }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }
        .winners-list {
            background: var(--bg-surface);
            border-radius: 15px;
            padding: 15px;
            margin-bottom: 30px;
        }
        .winner-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-default);
            font-size: 14px;
        }
        .winner-user { color: var(--primary); font-weight: 600; }
        .winner-amount { color: var(--secondary); font-weight: 700; }
        .providers-wall {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 30px;
        }
        .provider-tag {
            background: var(--bg-elevation);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            font-weight: 700;
            color: var(--primary);
            border: 1px solid var(--border-default);
        }
        .reviews-container {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 30px;
        }
        .review-card {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-secondary); }
        .stars { color: #FFD700; font-size: 12px; }
        .faq-section {
            background: var(--bg-surface);
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 30px;
        }
        .faq-item { margin-bottom: 20px; }
        .faq-item h3 { font-size: 16px; color: var(--primary); margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .security-section {
            text-align: center;
            background: var(--bg-elevation);
            padding: 25px;
            border-radius: 15px;
            margin-bottom: 30px;
        }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--secondary); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 70px;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-default);
            z-index: 1001;
        }
        .nav-item {
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            color: var(--text-secondary);
            font-size: 12px;
        }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        .nav-item.active { color: var(--primary); }
        footer {
            background: var(--bg-surface);
            padding: 30px 15px 100px;
            text-align: center;
            border-top: 1px solid var(--border-default);
        }
        .footer-contacts { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .footer-contacts a { color: var(--text-secondary); text-decoration: none; font-size: 14px; }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 25px;
        }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        .copyright { font-size: 12px; color: var(--text-disabled); border-top: 1px solid var(--border-default); padding-top: 20px; }