:root {
            --primary: #FFD700;
            --primary-variant: #B8860B;
            --secondary: #E31C25;
            --accent: #00A859;
            --bg-main: #0D0D0D;
            --bg-surface: #1A1A1A;
            --bg-elevated: #262626;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-muted: #757575;
            --border-default: #333333;
            --font-heading: 'Montserrat', 'Inter', -apple-system, sans-serif;
            --font-body: 'Inter', 'Roboto', 'Helvetica Neue', sans-serif;
            --font-numeric: 'Oswald', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-body);
            line-height: 1.5;
            overflow-x: hidden;
        }
        header {
            background-color: var(--bg-surface);
            padding: 12px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-default);
        }
        header .brand { display: flex; align-items: center; gap: 8px; }
        header .brand img { width: 25px; height: 25px; border-radius: 4px; }
        header .brand strong { font-size: 16px; font-weight: 400; color: var(--primary); }
        header .actions { display: flex; gap: 10px; }
        header .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: opacity 0.2s;
        }
        header .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        header .btn-register { background: var(--primary); color: #000; }
        main { padding: 0 0 80px 0; max-width: 600px; margin: 0 auto; }
        .banner { width: 100%; aspect-ratio: 2 / 1; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-card {
            background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-elevated) 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--primary);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }
        .jackpot-title { font-family: var(--font-heading); font-size: 14px; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
        .jackpot-amount { font-family: var(--font-numeric); font-size: 36px; font-weight: 700; color: var(--primary); }
        .intro-card { padding: 20px; margin: 0 15px 20px 15px; background: var(--bg-surface); border-radius: 12px; }
        .intro-card h1 { font-family: var(--font-heading); font-size: 24px; color: var(--primary); margin-bottom: 12px; line-height: 1.2; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .section-title { font-family: var(--font-heading); font-size: 20px; margin: 20px 15px 15px; display: flex; align-items: center; gap: 8px; }
        .section-title::before { content: ''; width: 4px; height: 20px; background: var(--primary); border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid var(--border-default); transition: transform 0.2s; }
        .game-card:active { transform: scale(0.98); }
        .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; }
        .payments-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 0 15px; margin-bottom: 20px; }
        .payment-item { background: var(--bg-surface); padding: 12px 5px; border-radius: 8px; text-align: center; border: 1px solid var(--border-default); }
        .payment-item i { font-size: 20px; color: var(--primary); margin-bottom: 5px; display: block; }
        .payment-item span { font-size: 11px; color: var(--text-secondary); display: block; }
        .guide-section { padding: 0 15px; }
        .guide-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 12px; border-left: 3px solid var(--primary); }
        .guide-card h3 { font-size: 16px; margin-bottom: 8px; color: var(--primary); }
        .guide-card p { font-size: 13px; color: var(--text-secondary); }
        .winners-list { margin: 0 15px; background: var(--bg-surface); border-radius: 12px; overflow: hidden; }
        .winner-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 15px; border-bottom: 1px solid var(--border-default); }
        .winner-row:last-child { border-bottom: none; }
        .winner-info { display: flex; flex-direction: column; }
        .winner-user { font-size: 14px; font-weight: 600; color: var(--primary); }
        .winner-game { font-size: 12px; color: var(--text-muted); }
        .winner-amount { font-family: var(--font-numeric); color: var(--accent); font-weight: 600; }
        .winner-time { font-size: 11px; color: var(--text-muted); text-align: right; }
        .providers-box { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 15px; margin-bottom: 20px; }
        .provider-tag { background: var(--bg-elevated); padding: 15px; border-radius: 8px; text-align: center; color: var(--primary); font-weight: 600; font-size: 14px; border: 1px solid var(--border-default); }
        .comments-section { padding: 0 15px; }
        .comment-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid var(--border-default); }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-avatar { width: 40px; height: 40px; background: var(--bg-elevated); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); }
        .comment-user-info { flex: 1; }
        .comment-username { font-size: 14px; font-weight: 600; }
        .comment-stars { color: #FFC107; font-size: 12px; }
        .comment-text { font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; font-style: italic; }
        .comment-date { font-size: 11px; color: var(--text-muted); }
        .faq-section { padding: 0 15px; }
        .faq-item { background: var(--bg-surface); border-radius: 8px; margin-bottom: 10px; padding: 15px; border: 1px solid var(--border-default); }
        .faq-item h3 { font-size: 15px; color: var(--primary); margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: var(--text-secondary); }
        .security-section { margin: 20px 15px; padding: 20px; background: #000; border-radius: 12px; text-align: center; border: 1px dashed var(--border-default); }
        .security-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 15px; }
        .security-item { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
        .security-item i { color: var(--accent); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0 25px 0;
            border-top: 1px solid var(--border-default);
            z-index: 1001;
            max-width: 600px;
            margin: 0 auto;
        }
        .nav-item { text-decoration: none; display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-secondary); }
        .nav-item i { font-size: 20px; }
        .nav-item span { font-size: 11px; font-weight: 500; }
        footer {
            background: var(--bg-surface);
            padding: 30px 15px 100px 15px;
            border-top: 1px solid var(--border-default);
            text-align: center;
        }
        .footer-contact { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; flex-wrap: wrap; }
        .footer-contact a { color: var(--text-secondary); text-decoration: none; font-size: 14px; padding: 5px 10px; border: 1px solid var(--border-default); border-radius: 20px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; }
        .footer-copyright { font-size: 12px; color: var(--text-muted); line-height: 1.6; border-top: 1px solid var(--border-default); padding-top: 20px; }