:root {
            --primary: #D4AF37;
            --primary-hover: #F1C40F;
            --secondary: #059669;
            --secondary-hover: #10B981;
            --accent: #FF4500;
            --bg-main: #0D0D0D;
            --bg-surface: #1A1A1A;
            --bg-elevated: #262626;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #737373;
            --border-default: #333333;
            --border-gold: #D4AF37;
            --font-headings: 'Montserrat', sans-serif;
            --font-body: 'Inter', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-body);
            line-height: 1.5;
            padding-bottom: 70px;
        }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--bg-surface);
            border-bottom: 1px solid var(--border-default);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--primary); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 14px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.875rem;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--primary); color: #000; }
        .btn-register:hover { background: var(--primary-hover); }
        main { max-width: 1000px; margin: 0 auto; padding: 15px; }
        .banner {
            width: 100%;
            aspect-ratio: 2/1;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 20px;
            cursor: pointer;
            border: 1px solid var(--border-default);
        }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: linear-gradient(135deg, #1a1a1a 0%, #262626 100%);
            border: 2px solid var(--border-gold);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin-bottom: 25px;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }
        .jackpot-label {
            font-family: var(--font-headings);
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.875rem;
            margin-bottom: 10px;
        }
        .jackpot-amount {
            font-family: 'JetBrains Mono', monospace;
            font-size: 2.5rem;
            font-weight: 900;
            color: #fff;
            text-shadow: 0 0 10px var(--primary);
        }
        .intro-card {
            background: var(--bg-surface);
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 30px;
            border-left: 4px solid var(--border-gold);
        }
        .intro-card h1 {
            font-family: var(--font-headings);
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary);
        }
        .intro-card p { color: var(--text-secondary); font-size: 1rem; }
        .section-title {
            font-family: var(--font-headings);
            font-size: 1.25rem;
            margin: 25px 0 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .section-title::before {
            content: "";
            width: 4px;
            height: 20px;
            background: var(--primary);
            border-radius: 2px;
        }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 30px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--border-default);
            transition: transform 0.2s;
        }
        .game-card:hover { transform: translateY(-5px); border-color: var(--primary); }
        .game-card img {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            display: block;
        }
        .game-card h3 {
            padding: 10px;
            font-size: 0.875rem;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            background: var(--bg-elevated);
        }
        .payments-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-bottom: 30px;
        }
        .payment-item {
            background: var(--bg-surface);
            padding: 15px 5px;
            border-radius: 8px;
            text-align: center;
            border: 1px solid var(--border-default);
        }
        .payment-item i { font-size: 1.5rem; color: var(--primary); margin-bottom: 8px; display: block; }
        .payment-item span { font-size: 0.7rem; color: var(--text-secondary); display: block; }
        .guide-section {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            margin-bottom: 30px;
        }
        .guide-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border-default);
        }
        .guide-card h3 { margin-bottom: 10px; color: var(--primary); font-size: 1.1rem; }
        .guide-card p { font-size: 0.9rem; color: var(--text-secondary); text-align: justify; }
        .lottery-box {
            background: var(--bg-surface);
            border-radius: 12px;
            padding: 15px;
            margin-bottom: 30px;
            overflow: hidden;
            border: 1px solid var(--border-default);
        }
        .lottery-track {
            display: flex;
            flex-direction: column;
            gap: 10px;
            animation: scrollUp 20s linear infinite;
        }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .lottery-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px;
            background: var(--bg-elevated);
            border-radius: 8px;
            font-size: 0.8rem;
        }
        .lottery-user { color: var(--primary); font-weight: bold; }
        .lottery-win { color: var(--secondary); font-weight: bold; }
        .providers-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 30px;
        }
        .provider-block {
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            font-weight: bold;
            font-size: 0.9rem;
            background: var(--bg-elevated);
            color: var(--text-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: 20px;
            border-radius: 12px;
            border: 1px solid var(--border-default);
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 2rem; color: var(--text-muted); }
        .review-info h4 { font-size: 0.9rem; }
        .review-stars { color: #FFCC00; font-size: 0.8rem; }
        .review-content { font-size: 0.875rem; color: var(--text-secondary); margin-bottom: 10px; }
        .review-date { font-size: 0.75rem; color: var(--text-muted); }
        .faq-section { margin-bottom: 30px; }
        .faq-item {
            background: var(--bg-surface);
            border-radius: 8px;
            margin-bottom: 10px;
            border: 1px solid var(--border-default);
            overflow: hidden;
        }
        .faq-question { padding: 15px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 15px; color: var(--text-secondary); font-size: 0.9rem; display: block; }
        .security-section {
            background: var(--bg-elevated);
            padding: 25px;
            border-radius: 12px;
            text-align: center;
            margin-bottom: 30px;
        }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 2rem; color: var(--primary); }
        .security-text { font-size: 0.85rem; color: var(--text-secondary); }
        .security-links { margin-top: 15px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
        .security-links a { font-size: 0.75rem; color: var(--primary); text-decoration: underline; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
        }
        .nav-item { text-align: center; color: var(--text-secondary); font-size: 0.7rem; display: flex; flex-direction: column; gap: 4px; }
        .nav-item i { font-size: 1.2rem; }
        .nav-item.active { color: var(--primary); }
        footer {
            background: var(--bg-surface);
            padding: 30px 15px 80px;
            border-top: 1px solid var(--border-default);
        }
        .footer-contacts { margin-bottom: 25px; text-align: center; }
        .footer-contacts a { margin: 0 10px; color: var(--primary); font-size: 0.9rem; }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 25px;
            text-align: center;
        }
        .footer-links a { font-size: 0.8rem; color: var(--text-muted); }
        .footer-copy {
            text-align: center;
            font-size: 0.75rem;
            color: var(--text-muted);
            border-top: 1px solid var(--border-default);
            padding-top: 20px;
        }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .guide-section { grid-template-columns: 1fr 1fr; }
            .payments-grid { grid-template-columns: repeat(8, 1fr); }
        }