:root {
            --bg-primary: #0a0b0d;
            --bg-secondary: #16181d;
            --bg-tertiary: #1f2229;
            --bg-surface: #252830;
            --brand-primary: #d4af37;
            --brand-secondary: #aa8d2e;
            --brand-accent: #ffdf00;
            --gradient-gold: linear-gradient(180deg, #d4af37 0%, #f9e297 100%);
            --success: #21ce66;
            --error: #ff4d4d;
            --warning: #ffa500;
            --info: #2196f3;
            --text-primary: #ffffff;
            --text-secondary: #a0a5b1;
            --text-muted: #6b7280;
            --text-on-brand: #000000;
            --link: #d4af37;
            --border-default: #2d3139;
            --border-focused: #d4af37;
            --border-subtle: #1f2229;
            --font-primary: 'Montserrat', sans-serif;
            --font-secondary: 'Inter', sans-serif;
            --font-heading: 'Oswald', sans-serif;
        }

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

        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: var(--font-secondary);
            font-size: 16px;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
            padding-bottom: 70px;
        }

        h1, h2, h3 {
            font-family: var(--font-heading);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        h1 { font-size: 36px; line-height: 1.1; margin-bottom: 20px; color: var(--brand-primary); text-align: center; }
        h2 { font-size: 24px; margin-bottom: 15px; border-left: 4px solid var(--brand-primary); padding-left: 10px; }
        h3 { font-size: 18px; margin-bottom: 10px; }

        a { text-decoration: none; color: inherit; transition: 0.3s; }

        header {
            background-color: var(--bg-secondary);
            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: 8px; }
        .header-left img { width: 25px; height: 25px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--brand-primary); font-family: var(--font-heading); }

        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            font-family: var(--font-primary);
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--brand-primary); }
        .btn-register { background: var(--gradient-gold); color: var(--text-on-brand); }

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

        .jackpot-container {
            background: var(--bg-tertiary);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--border-default);
            position: relative;
            overflow: hidden;
        }
        .jackpot-label { font-size: 14px; color: var(--brand-accent); font-weight: 700; margin-bottom: 5px; }
        .jackpot-amount {
            font-size: 32px;
            font-family: var(--font-heading);
            color: var(--brand-primary);
            font-weight: 900;
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        }

        .intro-section { padding: 30px 15px; text-align: center; background: var(--bg-secondary); }
        .intro-section p { color: var(--text-secondary); max-width: 800px; margin: 0 auto; }

        .section-padding { padding: 25px 15px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
        .game-card {
            background: var(--bg-surface);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--border-default);
            transition: transform 0.2s;
        }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; text-align: center; }
        .game-info h3 { font-size: 14px; margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

        .article-list { display: flex; flex-direction: column; gap: 15px; }
        .article-card {
            display: flex;
            background: var(--bg-surface);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--border-default);
        }
        .article-card img { width: 120px; height: 120px; object-fit: cover; }
        .article-content { padding: 12px; flex: 1; }
        .article-content h3 { font-size: 16px; margin-bottom: 5px; color: var(--brand-primary); }
        .article-content p { font-size: 12px; color: var(--text-secondary); line-height: 1.4; }

        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; text-align: center; }
        .payment-item { background: var(--bg-tertiary); padding: 15px 5px; border-radius: 8px; font-size: 10px; }
        .payment-item i { font-size: 24px; color: var(--brand-primary); margin-bottom: 8px; display: block; }

        .lottery-section { background: var(--bg-tertiary); border-radius: 12px; padding: 15px; margin-top: 10px; }
        .lottery-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-subtle);
            font-size: 13px;
        }
        .lottery-item:last-child { border-bottom: none; }
        .lottery-user { color: var(--brand-accent); font-weight: 600; }
        .lottery-win { color: var(--success); font-weight: 700; }

        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .provider-block {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            font-weight: 700;
            color: var(--brand-primary);
            border: 1px solid var(--border-default);
            text-transform: uppercase;
        }

        .review-card {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
            border: 1px solid var(--border-default);
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-avatar { width: 40px; height: 40px; background: var(--bg-tertiary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--brand-primary); }
        .review-user-info h4 { font-size: 14px; }
        .review-stars { color: var(--brand-accent); font-size: 12px; }
        .review-text { font-size: 13px; color: var(--text-secondary); font-style: italic; }
        .review-date { font-size: 11px; color: var(--text-muted); margin-top: 8px; display: block; }

        .faq-section { background: var(--bg-secondary); }
        .faq-item { margin-bottom: 20px; border-bottom: 1px solid var(--border-subtle); padding-bottom: 15px; }
        .faq-item h3 { color: var(--brand-primary); font-size: 16px; margin-bottom: 8px; }
        .faq-item p { color: var(--text-secondary); font-size: 14px; }

        .security-section { text-align: center; padding: 30px 15px; background: var(--bg-tertiary); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 30px; color: var(--brand-primary); }
        .security-text { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 65px;
            background: var(--bg-secondary);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-default);
            z-index: 2000;
        }
        .nav-item { text-align: center; color: var(--text-secondary); font-size: 11px; flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item.active { color: var(--brand-primary); }

        footer { background: var(--bg-primary); padding: 40px 15px 100px; border-top: 1px solid var(--border-default); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 30px; }
        .footer-column h4 { font-size: 14px; color: var(--text-primary); margin-bottom: 15px; text-transform: uppercase; }
        .footer-column a { display: block; color: var(--text-secondary); font-size: 13px; margin-bottom: 8px; }
        .footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid var(--border-subtle); font-size: 12px; color: var(--text-muted); }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .article-list { display: grid; grid-template-columns: 1fr 1fr; }
            .provider-grid { grid-template-columns: repeat(4, 1fr); }
        }