:root {
            --primary: #FFD700;
            --primary-variant: #DAA520;
            --secondary: #C0C0C0;
            --accent: #FF4500;
            --prestige-gold: #B8860B;
            --bg-main: #0D0D0D;
            --bg-surface: #1A1A1A;
            --bg-card: #242424;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-muted: #757575;
            --border-default: #333333;
            --border-active: #FFD700;
            --success: #00E676;
            --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-display: 'Montserrat', 'Archivo Black', sans-serif;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { 
            background-color: var(--bg-main); 
            color: var(--text-primary); 
            font-family: var(--font-main); 
            line-height: 1.5; 
            padding-bottom: 70px;
        }

        header {
            background-color: var(--bg-surface);
            border-bottom: 1px solid var(--border-default);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        header .logo-container {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        header .logo-container img {
            width: 25px;
            height: 25px;
            object-fit: contain;
        }

        header .logo-container strong {
            font-size: 16px;
            font-weight: 400;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        header .auth-buttons {
            display: flex;
            gap: 10px;
        }

        header button {
            padding: 8px 16px;
            border-radius: 4px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            font-size: 14px;
        }

        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--primary); color: #000; }

        main { max-width: 1200px; margin: 0 auto; padding: 10px; }

        .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-box {
            background: linear-gradient(145deg, #1A1A1A, #000);
            border: 2px solid var(--prestige-gold);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 25px;
            box-shadow: 0 0 20px rgba(184, 134, 11, 0.3);
        }

        .jackpot-title {
            color: var(--primary);
            font-family: var(--font-display);
            font-size: 18px;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .jackpot-amount {
            font-size: 32px;
            font-weight: 900;
            color: var(--primary);
            font-family: 'JetBrains Mono', monospace;
            text-shadow: 0 0 10px var(--accent);
        }

        .intro-card {
            background-color: var(--bg-card);
            padding: 20px;
            border-radius: 15px;
            margin-bottom: 25px;
            border-left: 4px solid var(--primary);
        }

        .intro-card h1 { font-size: 24px; margin-bottom: 12px; color: var(--primary); font-family: var(--font-display); }
        .intro-card p { color: var(--text-secondary); font-size: 16px; }

        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 15px;
            padding: 0 5px;
        }

        .section-header h2 { font-size: 20px; font-family: var(--font-display); border-left: 3px solid var(--accent); padding-left: 10px; }

        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-bottom: 30px;
        }

        .game-card {
            background: var(--bg-card);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            transition: transform 0.2s;
            border: 1px solid var(--border-default);
        }

        .game-card:active { transform: scale(0.95); }

        .game-card img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            display: block;
        }

        .game-card h3 {
            padding: 10px;
            font-size: 14px;
            color: var(--text-primary);
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .payment-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;
            font-size: 12px;
            border: 1px solid var(--border-subtle);
        }

        .payment-item i { font-size: 20px; color: var(--primary); margin-bottom: 8px; display: block; }

        .guide-section { margin-bottom: 30px; }
        .guide-card { background: var(--bg-card); padding: 15px; border-radius: 10px; margin-bottom: 15px; }
        .guide-card h3 { color: var(--primary); margin-bottom: 10px; font-size: 18px; }
        .guide-card p { color: var(--text-secondary); font-size: 14px; }

        .lottery-container {
            background: var(--bg-surface);
            border-radius: 15px;
            padding: 15px;
            margin-bottom: 30px;
        }

        .lottery-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-divider);
            font-size: 13px;
        }

        .lottery-item span:nth-child(1) { color: var(--text-primary); }
        .lottery-item span:nth-child(2) { color: var(--success); font-weight: bold; }
        .lottery-item span:nth-child(3) { color: var(--text-muted); }

        .provider-wall {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 30px;
        }

        .provider-item {
            flex: 1 1 calc(50% - 10px);
            background: var(--bg-card);
            padding: 12px;
            text-align: center;
            border-radius: 8px;
            font-weight: bold;
            color: var(--primary-variant);
            border: 1px solid var(--border-default);
        }

        .comment-grid { margin-bottom: 30px; }
        .comment-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid var(--border-default); }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .comment-user i { color: var(--primary); font-size: 20px; }
        .stars { color: var(--primary); font-size: 12px; margin-bottom: 8px; }

        .faq-section { margin-bottom: 30px; }
        .faq-item { margin-bottom: 15px; }
        .faq-item h3 { font-size: 16px; color: var(--primary); margin-bottom: 5px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }

        .security-section {
            background: var(--bg-card);
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 30px;
        }

        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--primary); }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 65px;
            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 { text-decoration: none; color: var(--text-secondary); text-align: center; font-size: 12px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item:active { color: var(--primary); }

        footer {
            background: var(--bg-surface);
            padding: 30px 15px 100px;
            border-top: 1px solid var(--border-default);
            text-align: center;
        }

        .footer-contacts { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; flex-wrap: wrap; }
        .footer-contacts a { color: var(--primary); text-decoration: none; font-size: 14px; }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 25px;
            text-align: left;
        }

        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; }
        .copyright { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-divider); padding-top: 20px; }