:root {
            --primary-bg: #11141a;
            --card-bg: #1c212b;
            --accent-gold: #f39c12;
            --accent-red: #e74c3c;
            --text-main: #ffffff;
            --text-dim: #b0b3b8;
            --nav-bg: #1a1d24;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--primary-bg);
            color: var(--text-main);
            line-height: 1.6;
            padding-bottom: 70px;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        header {
            background: var(--nav-bg);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #2d3436;
        }
        .header-left {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .header-left img {
            width: 25px;
            height: 25px;
            border-radius: 4px;
        }
        .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: bold;
            cursor: pointer;
            border: none;
        }
        .btn-login {
            background: transparent;
            color: var(--accent-gold);
            border: 1px solid var(--accent-gold);
        }
        .btn-register {
            background: linear-gradient(135deg, #f39c12, #e67e22);
            color: #fff;
        }
        .banner {
            width: 100%;
            cursor: pointer;
        }
        .banner img {
            width: 100%;
            aspect-ratio: 2/1;
            display: block;
            object-fit: cover;
        }
        .section-title {
            padding: 15px;
            font-size: 18px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--accent-gold);
        }
        .jackpot-container {
            margin: 10px 15px;
            background: linear-gradient(45deg, #2c3e50, #000000);
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 2px solid #f1c40f;
            box-shadow: 0 0 15px rgba(241, 196, 15, 0.3);
        }
        .jackpot-label {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #bdc3c7;
        }
        .jackpot-amount {
            font-size: 28px;
            font-weight: bold;
            color: #f1c40f;
            text-shadow: 0 0 10px rgba(241, 196, 15, 0.5);
        }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 0 15px;
        }
        .game-card {
            background: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.2s;
        }
        .game-card img {
            width: 100%;
            display: block;
        }
        .game-info {
            padding: 8px;
            text-align: center;
            font-size: 13px;
            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(--accent-gold);
        }
        .intro-card h1 {
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--accent-gold);
        }
        .intro-card p {
            font-size: 14px;
            color: var(--text-dim);
        }
        .guidelines-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 10px;
            padding: 0 15px;
        }
        .guideline-item {
            background: #252a34;
            padding: 15px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .guideline-item i {
            font-size: 20px;
            color: var(--accent-gold);
        }
        .winning-list {
            margin: 15px;
            background: var(--card-bg);
            border-radius: 12px;
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        .winning-item {
            padding: 10px 15px;
            border-bottom: 1px solid #2d3436;
            display: flex;
            justify-content: space-between;
            font-size: 13px;
        }
        .winning-name { color: var(--accent-gold); }
        .winning-amount { color: #2ecc71; font-weight: bold; }
        .promo-banner {
            margin: 20px 15px;
            background: linear-gradient(135deg, #c0392b, #8e44ad);
            padding: 20px;
            border-radius: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .comments-section {
            padding: 15px;
        }
        .comment-card {
            background: #252a34;
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 12px;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 5px;
        }
        .user-name { font-weight: bold; color: var(--accent-gold); }
        .rating { color: #f1c40f; }
        .comment-body { font-size: 13px; color: var(--text-dim); }
        .faq-section {
            padding: 15px;
        }
        .faq-item {
            margin-bottom: 15px;
            background: var(--card-bg);
            border-radius: 10px;
            padding: 15px;
        }
        .faq-item h3 {
            font-size: 16px;
            margin-bottom: 8px;
            color: var(--accent-gold);
        }
        .faq-item p {
            font-size: 14px;
            color: var(--text-dim);
        }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60px;
            background: var(--nav-bg);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid #2d3436;
            z-index: 1000;
        }
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 12px;
            color: var(--text-dim);
        }
        .nav-item i { font-size: 20px; margin-bottom: 2px; }
        footer {
            padding: 30px 15px 80px;
            background: #0d1117;
            text-align: center;
        }
        .footer-row {
            margin-bottom: 20px;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        .footer-link {
            color: var(--text-dim);
            font-size: 14px;
        }
        .copyright {
            font-size: 12px;
            color: #586069;
        }