:root {
            --primary: #D4AF37;
            --primary-light: #F9E076;
            --primary-dark: #996515;
            --secondary: #1A1A1A;
            --accent: #FFD700;
            --bg-main: #0B0E11;
            --bg-card: #151921;
            --bg-surface: #1E2329;
            --text-primary: #FFFFFF;
            --text-secondary: #B7BDC6;
            --text-muted: #707A8A;
            --success: #02C076;
            --border-default: #2B3139;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Montserrat', sans-serif;
            line-height: 1.5;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: 'Oswald', sans-serif; text-transform: uppercase; color: var(--primary); }
        h1 { font-size: 40px; line-height: 1.2; margin-bottom: 20px; }
        h2 { font-size: 32px; margin: 30px 0 20px; text-align: center; border-bottom: 2px solid var(--primary-dark); display: inline-block; width: 100%; padding-bottom: 10px; }
        h3 { font-size: 20px; margin-bottom: 10px; }
        a { text-decoration: none; color: inherit; }
        header {
            background: var(--bg-surface);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-default);
        }
        .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; color: var(--primary-light); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            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: var(--bg-main); }
        .hero-banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: linear-gradient(145deg, #151921, #0B0E11);
            margin: 20px 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--primary-dark);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
        }
        .jackpot-label { font-size: 14px; color: var(--accent); margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 900; color: var(--primary-light); font-family: 'Roboto Mono', monospace; }
        .intro-section { padding: 30px 15px; text-align: center; }
        .intro-section p { color: var(--text-secondary); font-size: 16px; }
        .grid-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            padding: 0 15px;
        }
        .game-card {
            background: var(--bg-card);
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--border-default);
            transition: transform 0.3s;
        }
        .game-card:active { transform: scale(0.98); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 10px; text-align: center; }
        .article-list { padding: 0 15px; margin-top: 30px; }
        .article-item {
            display: flex;
            gap: 15px;
            background: var(--bg-card);
            margin-bottom: 15px;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--border-default);
        }
        .article-item img { width: 100px; height: 100px; object-fit: cover; }
        .article-content { padding: 10px; flex: 1; }
        .article-content h3 { font-size: 16px; line-height: 1.3; }
        .article-content p { font-size: 12px; color: var(--text-muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .payment-methods {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            padding: 20px 15px;
            background: var(--bg-surface);
            margin: 30px 0;
        }
        .payment-item { text-align: center; color: var(--text-secondary); }
        .payment-item i { font-size: 24px; color: var(--primary); display: block; margin-bottom: 5px; }
        .payment-item span { font-size: 10px; }
        .winner-list { padding: 0 15px; background: var(--bg-card); padding: 20px 15px; }
        .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(--accent); }
        .winner-win { color: var(--success); font-weight: bold; }
        .providers-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            padding: 0 15px;
            margin-bottom: 30px;
        }
        .provider-block {
            background: var(--bg-surface);
            padding: 15px;
            text-align: center;
            border-radius: 6px;
            font-weight: bold;
            color: var(--text-secondary);
            border: 1px solid var(--border-default);
        }
        .reviews-section { padding: 0 15px; }
        .review-card {
            background: var(--bg-card);
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 15px;
            border-left: 4px solid var(--primary);
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-stars { color: var(--accent); font-size: 12px; }
        .review-body { font-size: 14px; color: var(--text-secondary); font-style: italic; }
        .faq-section { padding: 20px 15px; }
        .faq-item { margin-bottom: 20px; background: var(--bg-surface); padding: 15px; border-radius: 8px; }
        .faq-item h3 { font-size: 18px; color: var(--primary-light); }
        .faq-item p { color: var(--text-secondary); font-size: 14px; }
        .security-section {
            padding: 30px 15px;
            text-align: center;
            background: var(--bg-main);
            border-top: 1px solid var(--border-default);
        }
        .security-icons { font-size: 30px; color: var(--primary); margin-bottom: 15px; display: flex; justify-content: center; gap: 20px; }
        .security-text { font-size: 12px; color: var(--text-muted); max-width: 80%; margin: 0 auto; }
        .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: 1001;
        }
        .nav-item { text-align: center; color: var(--text-muted); font-size: 10px; }
        .nav-item i { font-size: 20px; display: block; margin-bottom: 2px; }
        .nav-item.active { color: var(--primary); }
        footer { padding: 30px 15px 100px; background: var(--bg-main); border-top: 1px solid var(--border-default); }
        .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-link { color: var(--text-muted); font-size: 14px; margin-bottom: 8px; display: block; }
        .footer-bottom { text-align: center; color: var(--text-muted); font-size: 12px; padding-top: 20px; border-top: 1px solid var(--border-default); }