:root {
            --primary-gold: #d4af37;
            --accent-gold: #f9e282;
            --dark-bg: #0f1217;
            --card-bg: #1a1d24;
            --text-light: #e0e0e0;
            --text-muted: #9aa0a6;
            --btn-grad: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
            --header-bg: #12141a;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-light);
            line-height: 1.6;
            padding-bottom: 70px;
        }
        a { text-decoration: none; color: inherit; }
        header {
            background-color: var(--header-bg);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: normal; color: var(--primary-gold); }
        .header-right { display: flex; gap: 8px; }
        .btn-login, .btn-register {
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: transparent; color: var(--primary-gold); border: 1px solid var(--primary-gold); }
        .btn-register { background: var(--btn-grad); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            margin: 15px;
            background: linear-gradient(45deg, #2a1f0a, #1a1d24);
            border: 1px solid #d4af3744;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
        }
        .jackpot-title { color: var(--primary-gold); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 10px rgba(212,175,55,0.5); margin: 5px 0; }
        .section-title { padding: 0 15px; margin: 20px 0 10px; font-size: 18px; border-left: 4px solid var(--primary-gold); margin-left: 15px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--card-bg); border-radius: 10px; overflow: hidden; position: relative; transition: transform 0.2s; border: 1px solid #ffffff0a; }
        .game-card:active { transform: scale(0.96); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; font-size: 13px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; background: #22262e; color: #ddd; }
        .platform-intro { margin: 20px 15px; background: var(--card-bg); padding: 20px; border-radius: 15px; border: 1px solid #333; }
        .platform-intro h1 { font-size: 18px; color: var(--primary-gold); margin-bottom: 12px; line-height: 1.4; }
        .platform-intro p { font-size: 14px; color: var(--text-muted); }
        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 10px; padding: 0 15px; }
        .guide-item { background: #1a1d24; padding: 15px; border-radius: 10px; display: flex; align-items: center; gap: 15px; }
        .guide-item i { font-size: 24px; color: var(--primary-gold); width: 30px; text-align: center; }
        .guide-text h3 { font-size: 15px; margin-bottom: 3px; }
        .guide-text p { font-size: 13px; color: var(--text-muted); }
        .winners-list { margin: 20px 15px; background: #1a1d24; border-radius: 12px; padding: 10px; height: 250px; overflow-y: auto; }
        .winner-row { display: flex; justify-content: space-between; padding: 8px 10px; border-bottom: 1px solid #ffffff05; font-size: 13px; }
        .winner-row span:last-child { color: #00c853; font-weight: bold; }
        .pro-elements { padding: 20px 15px; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 15px; filter: grayscale(1); opacity: 0.6; }
        .pro-elements i { font-size: 30px; }
        .reviews-container { padding: 0 15px; display: flex; flex-direction: column; gap: 12px; }
        .review-card { background: #1a1d24; padding: 15px; border-radius: 12px; border-left: 3px solid var(--primary-gold); }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .user-name { font-weight: 600; font-size: 14px; color: var(--accent-gold); }
        .rating { color: #ffc107; font-size: 12px; }
        .review-body { font-size: 13px; color: #bbb; font-style: italic; }
        .faq-section { padding: 0 15px; margin-top: 30px; }
        .faq-item { background: #1a1d24; border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 14px; border-bottom: 1px solid #333; display: flex; justify-content: space-between; align-items: center; color: var(--primary-gold); }
        .faq-answer { padding: 15px; font-size: 13px; color: var(--text-muted); line-height: 1.6; }
        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            background: #12141a;
            height: 65px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid #333;
            z-index: 1001;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: var(--text-muted); }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: var(--primary-gold); }
        footer { padding: 30px 15px 100px; text-align: center; background: #0a0c10; border-top: 1px solid #222; }
        .foot-links { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-bottom: 20px; font-size: 13px; }
        .foot-links a { color: var(--text-muted); }
        .foot-copyright { font-size: 12px; color: #555; border-top: 1px solid #222; padding-top: 15px; }