:root {
            --primary: #D4AF37;
            --primary-hover: #F2D472;
            --secondary: #1A1A1A;
            --accent: #FFD700;
            --gold-gradient: linear-gradient(180deg, #D4AF37 0%, #F2D472 100%);
            --bg-main: #050505;
            --bg-surface: #121212;
            --bg-surface-alt: #1E1E1E;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-muted: #757575;
            --border-default: #2C2C2C;
            --success: #00C853;
            --win: #4CAF50;
        }
        * { 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;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        header {
            height: 60px;
            background: var(--bg-surface);
            border-bottom: 1px solid var(--border-default);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; }
        .header-left strong { font-size: 16px; font-weight: 400; text-transform: uppercase; letter-spacing: 1px; }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--gold-gradient); color: #000; }
        .banner-container { margin: 10px 0; }
        .banner-img {
            width: 100%;
            aspect-ratio: 2 / 1;
            object-fit: cover;
            border-radius: 12px;
            cursor: pointer;
        }
        .jackpot-box {
            background: radial-gradient(circle, #2a2a2a 0%, #050505 100%);
            border: 2px solid var(--primary);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin: 20px 0;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }
        .jackpot-label { color: var(--primary); font-weight: 700; font-size: 14px; text-transform: uppercase; margin-bottom: 5px; }
        .jackpot-amount { font-family: 'Roboto Mono', monospace; font-size: 32px; font-weight: 900; color: var(--accent); }
        .intro-card {
            background: var(--bg-surface);
            padding: 25px;
            border-radius: 12px;
            margin-bottom: 25px;
            border-left: 4px solid var(--primary);
        }
        .intro-card h1 { font-size: 20px; margin-bottom: 12px; color: var(--primary); }
        .intro-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
        .section-title { font-size: 18px; margin: 25px 0 15px; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ""; width: 4px; height: 18px; background: var(--primary); display: inline-block; border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 25px; }
        .game-card {
            background: var(--bg-surface-alt);
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.2s;
            border: 1px solid var(--border-default);
        }
        .game-card:hover { transform: translateY(-5px); border-color: var(--primary); }
        .game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
        .game-info { padding: 10px; text-align: center; }
        .game-info h3 { font-size: 13px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 11px; color: var(--text-muted); text-transform: uppercase; }
        .trust-section {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            margin: 25px 0;
        }
        .trust-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; opacity: 0.7; }
        .trust-item { font-size: 24px; color: var(--text-secondary); }
        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .guideline-card { background: var(--bg-surface-alt); padding: 20px; border-radius: 10px; }
        .guideline-card h3 { font-size: 16px; margin-bottom: 10px; color: var(--primary); }
        .guideline-card p { font-size: 13px; color: var(--text-secondary); }
        .winning-marquee {
            background: var(--bg-surface);
            padding: 15px 0;
            overflow: hidden;
            margin: 25px 0;
            border-top: 1px solid var(--border-default);
            border-bottom: 1px solid var(--border-default);
        }
        .marquee-content { display: flex; animation: scroll 40s linear infinite; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .win-item {
            flex-shrink: 0;
            padding: 0 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            border-right: 1px solid var(--border-default);
        }
        .win-user { color: var(--primary); font-weight: 600; }
        .win-amount { color: var(--win); font-weight: 700; }
        .provider-wall {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin-bottom: 25px;
        }
        .provider-tag {
            background: var(--bg-surface-alt);
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 12px;
            color: var(--text-secondary);
            border: 1px solid var(--border-default);
        }
        .reviews-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .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: 12px; margin-bottom: 10px; }
        .review-avatar { width: 40px; height: 40px; background: var(--bg-surface-alt); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); }
        .review-meta h4 { font-size: 14px; }
        .stars { color: var(--accent); font-size: 12px; }
        .review-date { font-size: 11px; color: var(--text-muted); }
        .review-content { font-size: 13px; color: var(--text-secondary); font-style: italic; }
        .faq-section { margin-bottom: 30px; }
        .faq-item { background: var(--bg-surface-alt); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 14px; cursor: pointer; display: flex; justify-content: space-between; }
        .faq-answer { padding: 0 15px 15px; font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
        .security-section {
            background: linear-gradient(135deg, #1a1a1a 0%, #050505 100%);
            padding: 25px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--border-default);
            margin-bottom: 80px;
        }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-top: 15px; font-size: 24px; color: var(--text-muted); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-secondary); font-size: 10px; }
        .nav-item i { font-size: 18px; }
        footer { background: #000; padding: 40px 15px 100px; border-top: 1px solid var(--border-default); }
        .footer-contacts { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-bottom: 30px; }
        .footer-contacts a { color: var(--primary); font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; text-align: center; }
        .footer-links a { font-size: 13px; color: var(--text-muted); }
        .copyright { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid #1a1a1a; padding-top: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .guidelines-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
        }