:root {
            --primary: #d4af37;
            --primary-dark: #b8962e;
            --bg-dark: #0f1115;
            --card-bg: #1a1d24;
            --text-gold: #f1c40f;
            --text-light: #e0e0e0;
            --white: #ffffff;
        }
        body {
            margin: 0;
            padding: 0;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.6;
        }
        header {
            background: #1a1d24;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #2c313a;
        }
        .header-left {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .header-left img {
            width: 25px;
            height: 25px;
        }
        .header-left strong {
            font-size: 16px;
            font-weight: normal;
            color: var(--white);
        }
        .header-right {
            display: flex;
            gap: 10px;
        }
        .btn {
            padding: 6px 15px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }
        .btn-login {
            background: transparent;
            color: var(--primary);
            border: 1px solid var(--primary);
        }
        .btn-reg {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: #000;
        }
        main {
            padding: 0 0 80px 0;
            max-width: 600px;
            margin: 0 auto;
        }
        .banner {
            width: 100%;
            aspect-ratio: 2/1;
            overflow: hidden;
            cursor: pointer;
        }
        .banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .jackpot-container {
            margin: 15px;
            background: linear-gradient(145deg, #2a0a0a, #4a0f0f);
            border: 2px solid var(--primary);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
        }
        .jackpot-title {
            color: var(--primary);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 5px;
        }
        .jackpot-amount {
            font-size: 32px;
            font-weight: 800;
            color: var(--white);
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }
        .game-section {
            padding: 15px;
        }
        .section-title {
            font-size: 18px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--primary);
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }
        .game-card {
            background: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            color: var(--white);
            border: 1px solid #2c313a;
            transition: transform 0.2s;
        }
        .game-card:active {
            transform: scale(0.95);
        }
        .game-card img {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            display: block;
        }
        .game-info {
            padding: 10px;
            text-align: center;
            font-size: 13px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .intro-card {
            margin: 15px;
            background: var(--card-bg);
            padding: 20px;
            border-radius: 15px;
            border-left: 4px solid var(--primary);
        }
        .intro-card h1 {
            font-size: 18px;
            color: var(--primary);
            margin-bottom: 10px;
        }
        .intro-card p {
            font-size: 14px;
            color: #b0b0b0;
            margin: 0;
        }
        .guidelines {
            margin: 15px;
            display: grid;
            grid-template-columns: 1fr;
            gap: 10px;
        }
        .guide-item {
            background: var(--card-bg);
            padding: 15px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .guide-item i {
            color: var(--primary);
            font-size: 20px;
        }
        .winners-box {
            margin: 15px;
            background: var(--card-bg);
            border-radius: 12px;
            height: 200px;
            overflow-y: auto;
            padding: 10px;
        }
        .winner-row {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid #2c313a;
            font-size: 13px;
        }
        .winner-row span:last-child {
            color: var(--text-gold);
            font-weight: bold;
        }
        .pro-elements {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin: 15px;
            text-align: center;
        }
        .pro-item {
            background: #1e2229;
            padding: 15px 5px;
            border-radius: 10px;
            font-size: 11px;
        }
        .pro-item i {
            display: block;
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 8px;
        }
        .reviews {
            margin: 15px;
        }
        .review-card {
            background: var(--card-bg);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 12px;
        }
        .review-user {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px;
        }
        .review-user .avatar {
            width: 30px;
            height: 30px;
            background: #34495e;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .review-stars {
            color: var(--text-gold);
            font-size: 12px;
        }
        .review-content {
            font-size: 13px;
            color: #b0b0b0;
        }
        .faq-section {
            padding: 15px;
        }
        .faq-item {
            background: var(--card-bg);
            border-radius: 8px;
            margin-bottom: 10px;
            overflow: hidden;
        }
        .faq-q {
            padding: 15px;
            font-weight: 600;
            font-size: 14px;
            border-bottom: 1px solid #2c313a;
            color: var(--primary);
        }
        .faq-a {
            padding: 15px;
            font-size: 13px;
            color: #b0b0b0;
        }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 65px;
            background: #1a1d24;
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid #2c313a;
            z-index: 1000;
            max-width: 600px;
            margin: 0 auto;
        }
        .nav-item {
            text-decoration: none;
            color: #8e94a0;
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 11px;
            gap: 4px;
        }
        .nav-item i {
            font-size: 18px;
        }
        .nav-item.active {
            color: var(--primary);
        }
        footer {
            padding: 30px 15px 100px 15px;
            background: #0a0c0f;
            text-align: center;
            font-size: 13px;
        }
        .footer-row {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 20px;
        }
        .footer-row a {
            color: #8e94a0;
            text-decoration: none;
        }
        .copyright {
            color: #555;
            margin-top: 20px;
        }