:root {
            --primary: #FFD700;
            --primary-variant: #B8860B;
            --secondary: #E5E5E5;
            --accent: #FF4500;
            --bg-base: #0A0A0A;
            --bg-surface: #121212;
            --bg-elevated: #1E1E1E;
            --text-primary: #FFFFFF;
            --text-secondary: #A0A0A0;
            --text-muted: #6C757D;
            --success: #2ECC71;
            --win: #00FF7F;
            --border: #2C2C2C;
            --font-heading: 'Montserrat', 'Inter', system-ui, sans-serif;
            --font-body: 'Inter', 'Segoe UI', Roboto, sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-base);
            color: var(--text-primary);
            font-family: var(--font-body);
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        header {
            background: var(--bg-surface);
            border-bottom: 1px solid var(--border);
            height: 60px;
            display: flex;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }
        .logo-area { display: flex; align-items: center; gap: 8px; }
        .logo-area img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-area strong { font-size: 16px; font-weight: 400; color: var(--primary); }
        .auth-btns { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: transform 0.2s;
        }
        .btn:active { transform: scale(0.95); }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border); }
        .btn-register { background: var(--primary); color: #000; }
        .banner { width: 100%; display: block; cursor: pointer; }
        .banner img { width: 100%; aspect-ratio: 2/1; object-fit: cover; display: block; }
        .jackpot-box {
            background: linear-gradient(135deg, #1e1e1e 0%, #000 100%);
            margin: 20px 15px;
            padding: 20px;
            border-radius: 15px;
            border: 2px solid var(--primary);
            text-align: center;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-label { color: var(--primary); font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; margin-bottom: 5px; }
        .jackpot-amount { font-size: 32px; font-family: 'Roboto Mono', monospace; color: var(--win); font-weight: 900; }
        .platform-intro { padding: 25px 15px; text-align: center; }
        .platform-intro h1 { font-family: var(--font-heading); font-size: 24px; color: var(--primary); margin-bottom: 15px; }
        .platform-intro p { font-size: 15px; color: var(--text-secondary); max-width: 800px; margin: 0 auto; }
        .section-title { font-family: var(--font-heading); font-size: 20px; margin: 25px 15px 15px; border-left: 4px solid var(--primary); padding-left: 10px; }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            padding: 0 15px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border);
            display: flex;
            flex-direction: column;
        }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info span { font-size: 11px; color: var(--text-muted); }
        .payment-section {
            background: var(--bg-elevated);
            margin: 30px 0;
            padding: 30px 15px;
            text-align: center;
        }
        .payment-icons {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            justify-items: center;
            opacity: 0.8;
            margin-top: 20px;
        }
        .payment-icons i { font-size: 32px; color: var(--text-secondary); }
        .guidelines { padding: 20px 15px; }
        .guideline-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 15px;
            border-left: 3px solid var(--primary-variant);
        }
        .guideline-card h2 { font-size: 18px; margin-bottom: 10px; color: var(--primary); }
        .guideline-card p { font-size: 14px; color: var(--text-secondary); }
        .winner-marquee {
            background: var(--bg-surface);
            padding: 15px 0;
            overflow: hidden;
            white-space: nowrap;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            margin: 20px 0;
        }
        .marquee-content {
            display: inline-block;
            animation: scroll-marquee 40s linear infinite;
        }
        .winner-item {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-right: 30px;
            font-size: 13px;
        }
        .winner-item span { color: var(--win); font-weight: bold; }
        @keyframes scroll-marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .providers { padding: 25px 15px; text-align: center; }
        .provider-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-top: 15px;
            color: var(--text-muted);
            font-weight: 600;
        }
        .reviews { padding: 20px 15px; }
        .review-card {
            background: var(--bg-elevated);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--text-muted); }
        .review-header .name { font-weight: 600; font-size: 15px; }
        .stars { color: var(--primary); font-size: 12px; margin-bottom: 8px; }
        .review-content { font-size: 14px; color: var(--text-secondary); }
        .review-date { font-size: 11px; color: var(--text-muted); margin-top: 10px; }
        .faq-section { padding: 20px 15px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; cursor: pointer; color: var(--primary); border-bottom: 1px solid var(--border); }
        .faq-answer { padding: 15px; font-size: 14px; color: var(--text-secondary); }
        .security-section {
            padding: 30px 15px;
            text-align: center;
            background: var(--bg-elevated);
            margin-top: 30px;
        }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin: 20px 0; font-size: 24px; color: var(--success); }
        .responsible-text { font-size: 12px; color: var(--text-muted); line-height: 1.4; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 65px;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border);
            z-index: 1000;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-secondary); font-size: 12px; }
        .nav-item i { font-size: 20px; }
        .nav-item:active { color: var(--primary); }
        footer { padding: 40px 15px 100px; background: var(--bg-surface); border-top: 1px solid var(--border); text-align: center; }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            text-align: left;
            margin-bottom: 30px;
        }
        .footer-links a { font-size: 13px; color: var(--text-secondary); }
        .copyright { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border); padding-top: 20px; }