:root {
            --primary: #D4AF37;
            --primary-hover: #F1C40F;
            --secondary: #059669;
            --secondary-hover: #10B981;
            --accent: #FF4500;
            --bg-main: #0D0D0D;
            --bg-surface: #1A1A1A;
            --bg-elevated: #262626;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #737373;
            --border-default: #333333;
            --border-gold: #D4AF37;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--bg-surface);
            padding: 12px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--border-default);
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--text-primary); }
        .header-right { display: flex; gap: 8px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 0.875rem;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--primary); color: #000; }
        .btn-register:hover { background: var(--primary-hover); }
        main { max-width: 800px; margin: 0 auto; padding: 0 10px; }
        .banner {
            width: 100%;
            aspect-ratio: 2 / 1;
            object-fit: cover;
            border-radius: 12px;
            margin: 16px 0;
            cursor: pointer;
        }
        .jackpot-container {
            background: linear-gradient(135deg, #1a1a1a 0%, #262626 100%);
            border: 2px solid var(--border-gold);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin-bottom: 24px;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }
        .jackpot-label { color: var(--primary); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
        .jackpot-amount { font-family: 'JetBrains Mono', monospace; font-size: 2rem; color: #fff; font-weight: 900; }
        .intro-card {
            background: var(--bg-surface);
            padding: 24px;
            border-radius: 16px;
            margin-bottom: 24px;
            border: 1px solid var(--border-default);
        }
        .intro-card h1 { font-size: 1.5rem; margin-bottom: 12px; color: var(--primary); }
        .intro-card p { color: var(--text-secondary); font-size: 0.95rem; }
        .section-title { font-size: 1.25rem; margin: 24px 0 16px; padding-left: 12px; border-left: 4px solid var(--primary); }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 24px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-default); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { font-size: 0.875rem; padding: 10px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--text-primary); }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 32px; }
        .payment-item {
            background: var(--bg-surface);
            padding: 15px 5px;
            border-radius: 8px;
            text-align: center;
            border: 1px solid var(--border-default);
        }
        .payment-item i { font-size: 1.5rem; color: var(--primary); margin-bottom: 8px; display: block; }
        .payment-item span { font-size: 0.7rem; color: var(--text-secondary); display: block; }
        .guide-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
        .guide-card { background: var(--bg-surface); padding: 20px; border-radius: 12px; border-left: 4px solid var(--secondary); }
        .guide-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--text-primary); }
        .guide-card p { font-size: 0.875rem; color: var(--text-secondary); }
        .win-marquee {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 32px;
            border: 1px solid var(--border-default);
        }
        .marquee-content { display: flex; animation: marquee 30s linear infinite; gap: 30px; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .win-item { white-space: nowrap; font-size: 0.875rem; display: flex; gap: 10px; align-items: center; }
        .win-user { color: var(--primary); font-weight: 600; }
        .win-amount { color: var(--semantic-success, #00C853); font-weight: 700; }
        .providers-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 32px; }
        .provider-block { background: var(--bg-elevated); padding: 20px; border-radius: 10px; text-align: center; font-weight: bold; border: 1px solid var(--border-default); }
        .reviews-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
        .review-card { background: var(--bg-surface); padding: 20px; border-radius: 12px; border: 1px solid var(--border-default); }
        .review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
        .review-user { display: flex; align-items: center; gap: 8px; font-weight: 600; }
        .stars { color: #FFCC00; font-size: 0.8rem; }
        .review-content { font-size: 0.875rem; color: var(--text-secondary); font-style: italic; }
        .review-date { font-size: 0.75rem; color: var(--text-muted); margin-top: 10px; }
        .faq-container { margin-bottom: 32px; }
        .faq-item { background: var(--bg-surface); border-radius: 8px; margin-bottom: 10px; overflow: hidden; border: 1px solid var(--border-default); }
        .faq-question { padding: 15px 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 0.95rem; }
        .faq-answer { padding: 0 20px 15px; color: var(--text-secondary); font-size: 0.875rem; }
        .safety-section { background: #1a1d21; padding: 24px; border-radius: 16px; margin-bottom: 32px; border: 1px solid var(--border-default); }
        .safety-icons { display: flex; gap: 20px; justify-content: center; margin-bottom: 15px; font-size: 1.5rem; color: var(--primary); }
        .safety-text { text-align: center; font-size: 0.85rem; color: var(--text-secondary); }
        .safety-links { display: flex; justify-content: center; gap: 15px; margin-top: 15px; font-size: 0.8rem; flex-wrap: wrap; }
        .safety-links a { color: var(--primary); text-decoration: underline; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-default);
            z-index: 1001;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 0.7rem; color: var(--text-secondary); }
        .nav-item i { font-size: 1.2rem; color: var(--text-primary); }
        footer { background: var(--bg-surface); padding: 40px 20px; text-align: center; border-top: 1px solid var(--border-default); }
        .footer-contact { margin-bottom: 30px; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }
        .footer-links a { font-size: 0.85rem; color: var(--text-secondary); }
        .copyright { font-size: 0.75rem; color: var(--text-muted); padding-top: 20px; border-top: 1px solid var(--border-default); }
        @media (min-width: 600px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .payment-grid { grid-template-columns: repeat(4, 1fr); }
            .guide-grid { grid-template-columns: repeat(2, 1fr); }
        }