:root {
            --primary-gold: #d4af37;
            --dark-bg: #1a1d24;
            --card-bg: #252a34;
            --text-white: #ffffff;
            --text-gray: #a0a0a0;
            --accent-red: #e74c3c;
            --success-green: #2ecc71;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }
        body {
            background-color: var(--dark-bg);
            color: var(--text-white);
            line-height: 1.6;
            padding-bottom: 70px;
        }
        header {
            background-color: #121418;
            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: 5px;
        }
        .header-left strong {
            font-size: 16px;
            font-weight: normal;
        }
        .header-right {
            display: flex;
            gap: 10px;
        }
        .btn {
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            border: none;
            transition: transform 0.2s;
        }
        .btn:active { transform: scale(0.95); }
        .btn-login { background: transparent; border: 1px solid var(--primary-gold); color: var(--primary-gold); }
        .btn-register { background: var(--primary-gold); color: #000; }
        .banner {
            width: 100%;
            aspect-ratio: 2/1;
            cursor: pointer;
            overflow: hidden;
        }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .section-title {
            padding: 20px 15px 10px;
            font-size: 18px;
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--primary-gold);
        }
        .jackpot-container {
            margin: 15px;
            padding: 20px;
            background: linear-gradient(135deg, #2c3e50, #000000);
            border: 2px solid var(--primary-gold);
            border-radius: 15px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .jackpot-label { font-size: 14px; color: var(--primary-gold); text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount {
            font-size: 32px;
            font-weight: bold;
            color: #fff;
            text-shadow: 0 0 10px var(--primary-gold);
            margin: 10px 0;
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            padding: 0 15px;
        }
        .game-card {
            background: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            color: #fff;
            display: block;
            box-shadow: 0 4px 6px rgba(0,0,0,0.3);
        }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; font-size: 13px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card {
            margin: 20px 15px;
            padding: 20px;
            background: var(--card-bg);
            border-radius: 15px;
            border-left: 4px solid var(--primary-gold);
        }
        .intro-card h1 { font-size: 20px; margin-bottom: 10px; color: var(--primary-gold); }
        .intro-card p { font-size: 14px; color: var(--text-gray); }
        .trust-elements {
            display: flex;
            justify-content: space-around;
            padding: 20px 15px;
            background: #121418;
            margin: 15px 0;
        }
        .trust-item { text-align: center; font-size: 11px; color: var(--text-gray); }
        .trust-item i { font-size: 24px; color: var(--primary-gold); display: block; margin-bottom: 5px; }
        .guidelines-grid { padding: 0 15px; }
        .guide-item {
            background: var(--card-bg);
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
        .guide-item i { color: var(--primary-gold); font-size: 18px; margin-top: 3px; }
        .guide-content h3 { font-size: 15px; margin-bottom: 5px; }
        .guide-content p { font-size: 13px; color: var(--text-gray); }
        .winning-scroll {
            margin: 15px;
            background: #121418;
            border-radius: 10px;
            height: 200px;
            overflow: hidden;
            padding: 10px;
        }
        .winning-list { animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .win-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid #252a34;
            font-size: 13px;
        }
        .win-user { color: var(--text-white); }
        .win-amount { color: var(--success-green); font-weight: bold; }
        .comment-grid { padding: 0 15px; }
        .comment-card {
            background: #1e222a;
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
        }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-avatar { width: 35px; height: 35px; background: #34495e; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; }
        .comment-name { font-size: 14px; flex: 1; }
        .comment-stars { color: #f1c40f; font-size: 12px; }
        .comment-text { font-size: 13px; color: var(--text-gray); font-style: italic; }
        .faq-section { padding: 0 15px; margin-bottom: 30px; }
        .faq-item { background: var(--card-bg); border-radius: 10px; margin-bottom: 10px; padding: 15px; }
        .faq-item h3 { font-size: 15px; margin-bottom: 8px; color: var(--primary-gold); }
        .faq-item p { font-size: 13px; color: var(--text-gray); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 65px;
            background: #121418;
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid #333;
            z-index: 1000;
        }
        .nav-item {
            text-align: center;
            text-decoration: none;
            color: var(--text-gray);
            font-size: 11px;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: var(--primary-gold); }
        footer {
            padding: 30px 15px;
            background: #0d0f12;
            text-align: center;
            border-top: 1px solid #252a34;
        }
        .footer-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; }
        .footer-link { color: var(--text-gray); text-decoration: none; font-size: 13px; }
        .copyright { font-size: 12px; color: #555; margin-top: 20px; }
        .badge-grid {
            display: flex;
            justify-content: center;
            gap: 15px;
            padding: 15px;
            filter: grayscale(1);
            opacity: 0.5;
        }