:root {
            --bg-primary: #0d0d0d;
            --bg-secondary: #1a1a1a;
            --bg-tertiary: #262626;
            --bg-surface: #121212;
            --brand-primary: #d4af37;
            --brand-hover: #f1c40f;
            --brand-accent: #ff3e3e;
            --gold-gradient: linear-gradient(180deg, #d4af37 0%, #996515 100%);
            --text-primary: #ffffff;
            --text-secondary: #b3b3b3;
            --text-muted: #757575;
            --border-default: #333333;
            --font-primary: 'Inter', sans-serif;
            --font-heading: 'Montserrat', sans-serif;
            --font-numbers: 'Roboto Mono', monospace;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: var(--font-primary);
            line-height: 1.5;
            overflow-x: hidden;
        }
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: 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; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 500; color: var(--brand-primary); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background-color: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--gold-gradient); color: #000; }
        main { padding-bottom: 80px; }
        .banner { width: 100%; aspect-ratio: 2/1; display: block; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            margin: 20px 15px;
            background: var(--bg-secondary);
            border: 1px solid var(--brand-primary);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .jackpot-title { font-family: var(--font-heading); color: var(--brand-primary); font-size: 1.2rem; margin-bottom: 10px; text-transform: uppercase; }
        .jackpot-amount { font-family: var(--font-numbers); font-size: 2rem; font-weight: 900; color: #fff; text-shadow: 0 0 10px rgba(212,175,55,0.5); }
        .intro-card { margin: 20px 15px; padding: 20px; background: var(--bg-surface); border-radius: 15px; border: 1px solid var(--border-default); }
        .intro-card h1 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--brand-primary); margin-bottom: 12px; }
        .intro-card p { color: var(--text-secondary); font-size: 0.95rem; }
        .section-header { padding: 0 15px; margin-top: 25px; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
        .section-header h2 { font-family: var(--font-heading); font-size: 1.25rem; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-secondary); border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid var(--border-default); transition: 0.3s; }
        .game-card:hover { border-color: var(--brand-primary); transform: translateY(-3px); }
        .game-img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 0.875rem; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-section { margin: 30px 15px; background: var(--bg-tertiary); border-radius: 15px; padding: 20px; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-top: 15px; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; color: var(--text-secondary); font-size: 0.75rem; }
        .payment-item i { font-size: 1.5rem; color: var(--brand-primary); }
        .guides-container { padding: 0 15px; margin-top: 30px; }
        .guide-box { background: var(--bg-surface); border-radius: 12px; padding: 15px; margin-bottom: 15px; border-left: 4px solid var(--brand-primary); }
        .guide-box h3 { margin-bottom: 8px; font-size: 1.1rem; color: var(--brand-primary); }
        .guide-box p { font-size: 0.9rem; color: var(--text-secondary); }
        .winners-section { margin: 30px 15px; background: var(--bg-secondary); border-radius: 15px; padding: 20px; }
        .winner-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border-default); font-size: 0.85rem; }
        .winner-row:last-child { border-bottom: none; }
        .winner-name { color: var(--brand-primary); font-weight: 600; }
        .winner-amount { color: #00c853; font-family: var(--font-numbers); }
        .providers-section { padding: 20px 15px; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .provider-block { background: var(--gold-gradient); color: #000; padding: 12px; border-radius: 8px; text-align: center; font-weight: 700; font-size: 0.9rem; }
        .review-section { padding: 0 15px; margin-top: 30px; }
        .review-card { background: var(--bg-surface); border-radius: 15px; padding: 20px; margin-bottom: 15px; border: 1px solid var(--border-default); }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-user i { font-size: 2rem; color: var(--brand-primary); }
        .review-stars { color: #ffab00; margin-bottom: 8px; }
        .review-content { font-size: 0.9rem; color: var(--text-secondary); font-style: italic; }
        .faq-section { padding: 0 15px; margin-top: 30px; }
        .faq-item { margin-bottom: 15px; background: var(--bg-secondary); border-radius: 10px; padding: 15px; }
        .faq-item h3 { color: var(--brand-primary); font-size: 1rem; margin-bottom: 8px; }
        .faq-item p { color: var(--text-secondary); font-size: 0.9rem; }
        .security-section { margin: 30px 15px; padding: 20px; background: #1a1010; border-radius: 15px; border: 1px solid var(--brand-accent); }
        .security-section h2 { color: var(--brand-accent); margin-bottom: 10px; font-size: 1.2rem; }
        .security-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 15px; }
        .security-badge { background: rgba(255,62,62,0.1); color: var(--brand-accent); padding: 5px 12px; border-radius: 20px; font-size: 0.75rem; border: 1px solid var(--brand-accent); }
        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            background: var(--bg-surface);
            border-top: 1px solid var(--border-default);
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            padding: 10px 0;
            z-index: 1001;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; text-decoration: none; color: var(--text-secondary); font-size: 10px; gap: 4px; }
        .nav-item i { font-size: 18px; }
        .nav-item:nth-child(3) i { color: var(--brand-primary); font-size: 24px; }
        footer { background: var(--bg-secondary); padding: 40px 15px 100px; border-top: 1px solid var(--border-default); }
        .footer-contact { display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 30px; justify-content: center; }
        .footer-contact a { color: var(--brand-primary); text-decoration: none; font-size: 0.9rem; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; text-align: center; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.85rem; }
        .footer-copy { text-align: center; color: var(--text-muted); font-size: 0.75rem; border-top: 1px solid var(--border-default); padding-top: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .banner { aspect-ratio: 3/1; }
            main { max-width: 1000px; margin: 0 auto; }
        }