:root {
            --primary-bg: #1a1d24;
            --secondary-bg: #242933;
            --accent-gold: #f3c15b;
            --accent-gold-hover: #d4af37;
            --text-white: #ffffff;
            --text-gray: #a0aec0;
            --card-radius: 12px;
            --transition: all 0.3s ease;
        }
        body {
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--primary-bg);
            color: var(--text-white);
            line-height: 1.6;
            padding-bottom: 70px;
        }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; padding: 0; margin: 0; }
        header {
            background-color: var(--secondary-bg);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            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; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: normal; color: var(--accent-gold); }
        .header-right { display: flex; gap: 8px; }
        .btn-login, .btn-register {
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: var(--transition);
        }
        .btn-login { background-color: transparent; border: 1px solid var(--accent-gold); color: var(--accent-gold); }
        .btn-register { background-color: var(--accent-gold); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .container { padding: 15px; max-width: 1200px; margin: 0 auto; }
        .jackpot-section {
            background: linear-gradient(135deg, #2d3436 0%, #000000 100%);
            border: 2px solid var(--accent-gold);
            border-radius: var(--card-radius);
            padding: 20px;
            text-align: center;
            margin: 15px 0;
            position: relative;
            overflow: hidden;
        }
        .jackpot-title { color: var(--accent-gold); font-size: 18px; text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: bold; color: #fff; text-shadow: 0 0 10px rgba(243, 193, 91, 0.5); }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card {
            background-color: var(--secondary-bg);
            border-radius: var(--card-radius);
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid rgba(255,255,255,0.05);
        }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; text-align: center; }
        .game-title { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--text-gray); }
        .intro-card {
            background: var(--secondary-bg);
            border-radius: var(--card-radius);
            padding: 20px;
            margin: 20px 0;
            border-left: 4px solid var(--accent-gold);
        }
        .intro-card h1 { font-size: 20px; color: var(--accent-gold); margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: var(--text-gray); margin: 0; }
        .section-header { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }
        .section-header h2 { font-size: 18px; margin: 0; }
        .section-header i { color: var(--accent-gold); }
        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 10px; margin-bottom: 25px; }
        .guide-item { background: var(--secondary-bg); padding: 15px; border-radius: var(--card-radius); display: flex; align-items: center; gap: 15px; }
        .guide-item i { font-size: 20px; color: var(--accent-gold); }
        .winner-ticker { background: rgba(0,0,0,0.3); border-radius: var(--card-radius); padding: 15px; height: 150px; overflow-y: auto; margin-bottom: 25px; border: 1px solid rgba(255,255,255,0.05); }
        .winner-item { display: flex; justify-content: space-between; padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 13px; }
        .winner-user { color: var(--text-gray); }
        .winner-prize { color: var(--accent-gold); font-weight: bold; }
        .pro-elements { display: flex; justify-content: space-around; padding: 20px 0; background: var(--secondary-bg); border-radius: var(--card-radius); margin-bottom: 25px; }
        .pro-item { text-align: center; font-size: 12px; color: var(--text-gray); }
        .pro-item i { display: block; font-size: 24px; color: var(--accent-gold); margin-bottom: 5px; }
        .comment-grid { display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: 25px; }
        .comment-card { background: var(--secondary-bg); padding: 15px; border-radius: var(--card-radius); border-top: 2px solid var(--accent-gold); }
        .comment-user { font-weight: bold; font-size: 14px; margin-bottom: 5px; display: flex; justify-content: space-between; }
        .comment-stars { color: var(--accent-gold); font-size: 12px; }
        .comment-text { font-size: 13px; color: var(--text-gray); font-style: italic; }
        .faq-section { margin-top: 30px; }
        .faq-item { margin-bottom: 15px; background: var(--secondary-bg); border-radius: var(--card-radius); padding: 15px; }
        .faq-item h3 { font-size: 16px; margin: 0 0 10px 0; color: var(--accent-gold); }
        .faq-item p { font-size: 14px; color: var(--text-gray); margin: 0; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60px;
            background-color: var(--secondary-bg);
            display: flex;
            justify-content: space-around;
            align-items: center;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
            z-index: 1000;
        }
        .nav-item { text-align: center; color: var(--text-gray); font-size: 11px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 2px; }
        .nav-item:hover { color: var(--accent-gold); }
        footer { background: #111; padding: 30px 15px 80px 15px; text-align: center; }
        .footer-row { margin-bottom: 20px; display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
        .footer-row a { color: var(--text-gray); font-size: 14px; }
        .footer-row a:hover { color: var(--accent-gold); }
        .copyright { font-size: 12px; color: #555; margin-top: 20px; }