:root {
            --primary: #FFD700;
            --primary-variant: #F0B90B;
            --secondary: #1E2329;
            --accent: #007BFF;
            --bg-main: #0B0E11;
            --bg-surface: #181A20;
            --bg-overlay: #1E2329;
            --text-primary: #FFFFFF;
            --text-secondary: #B7BDC6;
            --text-muted: #848E9C;
            --success: #0ECB81;
            --error: #F6465D;
            --border-default: #2B3139;
            --radius-md: 12px;
            --radius-lg: 16px;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-size: 16px;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            padding-bottom: 80px;
        }

        h1, h2, h3 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            line-height: 1.25;
            color: var(--text-primary);
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        header {
            background-color: var(--bg-surface);
            border-bottom: 1px solid var(--border-default);
            padding: 12px 16px;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .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: 400;
            color: var(--primary);
        }

        .header-auth {
            display: flex;
            gap: 8px;
        }

        .btn {
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: opacity 0.2s;
        }

        .btn-login {
            background-color: transparent;
            color: var(--text-primary);
            border: 1px solid var(--border-default);
        }

        .btn-register {
            background-color: var(--primary);
            color: var(--bg-main);
        }

        .banner {
            width: 100%;
            display: block;
            aspect-ratio: 1000 / 500;
            cursor: pointer;
            object-fit: cover;
        }

        .container {
            padding: 16px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .jackpot-section {
            background: linear-gradient(135deg, #1e2329 0%, #0b0e11 100%);
            border: 2px solid var(--primary);
            border-radius: var(--radius-lg);
            padding: 20px;
            text-align: center;
            margin: 20px 0;
            position: relative;
            overflow: hidden;
        }

        .jackpot-label {
            color: var(--primary);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 8px;
        }

        .jackpot-amount {
            font-family: 'Roboto Mono', monospace;
            font-size: 32px;
            color: var(--primary);
            font-weight: 700;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }

        .intro-card {
            background-color: var(--bg-surface);
            padding: 24px;
            border-radius: var(--radius-md);
            margin-bottom: 24px;
            border-left: 4px solid var(--primary);
        }

        .intro-card h1 {
            font-size: 24px;
            margin-bottom: 12px;
            color: var(--primary);
        }

        .intro-card p {
            color: var(--text-secondary);
            font-size: 15px;
        }

        .section-title {
            font-size: 20px;
            margin: 24px 0 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-title::before {
            content: '';
            width: 4px;
            height: 20px;
            background-color: var(--primary);
            border-radius: 2px;
        }

        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .game-card {
            background-color: var(--bg-surface);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: transform 0.2s;
            border: 1px solid var(--border-default);
        }

        .game-card:active {
            transform: scale(0.98);
        }

        .game-card img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            display: block;
        }

        .game-info {
            padding: 10px;
        }

        .game-info h3 {
            font-size: 14px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-bottom: 2px;
        }

        .game-provider {
            font-size: 11px;
            color: var(--text-muted);
        }

        .payment-methods {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
            background-color: var(--bg-surface);
            padding: 20px;
            border-radius: var(--radius-md);
            margin: 24px 0;
        }

        .payment-item {
            width: 60px;
            height: 35px;
            background-color: #fff;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 5px;
        }

        .payment-item i {
            color: #333;
            font-size: 20px;
        }

        .guidelines-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .guide-item {
            background-color: var(--bg-surface);
            padding: 20px;
            border-radius: var(--radius-md);
        }

        .guide-item h3 {
            font-size: 18px;
            margin-bottom: 10px;
            color: var(--primary);
        }

        .guide-item p {
            color: var(--text-secondary);
            font-size: 14px;
        }

        .winners-marquee {
            background-color: var(--bg-surface);
            border-radius: var(--radius-md);
            padding: 15px;
            margin: 24px 0;
            overflow: hidden;
            height: 200px;
            position: relative;
        }

        .winners-track {
            position: absolute;
            width: 100%;
            animation: scroll-up 20s linear infinite;
        }

        @keyframes scroll-up {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }

        .winner-row {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid var(--border-default);
            font-size: 13px;
        }

        .winner-amount {
            color: var(--success);
            font-weight: 600;
        }

        .providers-wall {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin: 20px 0;
        }

        .provider-tag {
            background-color: var(--bg-overlay);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 13px;
            color: var(--text-secondary);
            border: 1px solid var(--border-default);
        }

        .reviews-grid {
            display: grid;
            gap: 16px;
        }

        .review-card {
            background-color: var(--bg-surface);
            padding: 20px;
            border-radius: var(--radius-md);
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }

        .avatar-circle {
            width: 40px;
            height: 40px;
            background-color: var(--bg-overlay);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
        }

        .star-rating {
            color: var(--primary);
            font-size: 12px;
        }

        .faq-item {
            background-color: var(--bg-surface);
            margin-bottom: 12px;
            border-radius: var(--radius-md);
            overflow: hidden;
        }

        .faq-question {
            padding: 16px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            color: var(--text-primary);
        }

        .faq-answer {
            padding: 0 16px 16px;
            color: var(--text-secondary);
            font-size: 14px;
        }

        .security-section {
            text-align: center;
            background-color: var(--bg-surface);
            padding: 24px;
            border-radius: var(--radius-md);
            margin-top: 30px;
        }

        .security-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 15px 0;
            font-size: 24px;
        }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 65px;
            background-color: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-default);
            z-index: 1001;
        }

        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 11px;
            color: var(--text-muted);
            gap: 4px;
        }

        .nav-item i {
            font-size: 20px;
        }

        .nav-item:nth-child(3) {
            color: var(--primary);
            transform: translateY(-10px);
            background: var(--bg-surface);
            padding: 10px;
            border-radius: 50%;
            border-top: 1px solid var(--border-default);
        }

        footer {
            background-color: var(--bg-surface);
            padding: 40px 16px 100px;
            border-top: 1px solid var(--border-default);
        }

        .footer-contacts {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 30px;
        }

        .footer-link-cols {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 15px;
            margin-bottom: 30px;
        }

        .footer-link-cols a {
            font-size: 13px;
            color: var(--text-muted);
        }

        .copyright {
            text-align: center;
            font-size: 12px;
            color: var(--text-muted);
            padding-top: 20px;
            border-top: 1px solid var(--border-default);
        }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .guidelines-grid { grid-template-columns: 1fr 1fr; }
            .reviews-grid { grid-template-columns: 1fr 1fr; }
        }