:root {
            --primary-gold: #f3ba2f;
            --dark-bg: #0f1218;
            --card-bg: #1c212a;
            --text-white: #ffffff;
            --text-gray: #a0a0a0;
            --accent-blue: #2d8cf0;
            --gradient-gold: linear-gradient(135deg, #f3ba2f 0%, #d4a017 100%);
        }
        body {
            margin: 0;
            padding: 0;
            background-color: var(--dark-bg);
            color: var(--text-white);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            padding-bottom: 70px;
        }
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(15, 18, 24, 0.95);
            backdrop-filter: blur(10px);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #2a2e38;
        }
        .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-login, .btn-register {
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: bold;
            cursor: pointer;
            border: none;
        }
        .btn-login {
            background: transparent;
            color: var(--text-white);
            border: 1px solid var(--primary-gold);
        }
        .btn-register {
            background: var(--gradient-gold);
            color: #000;
        }
        main {
            padding: 0;
        }
        .banner {
            width: 100%;
            display: block;
            cursor: pointer;
        }
        .banner img {
            width: 100%;
            height: auto;
            aspect-ratio: 2/1;
            object-fit: cover;
        }
        .jackpot-container {
            background: #1c212a;
            margin: 15px;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid #333;
            background-image: radial-gradient(circle at top, #2d3440, #1c212a);
        }
        .jackpot-title {
            color: var(--primary-gold);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 5px;
        }
        .jackpot-amount {
            font-size: 32px;
            font-weight: 800;
            color: #fff;
            text-shadow: 0 0 10px rgba(243, 186, 47, 0.5);
        }
        .section-title {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 15px 15px 5px;
            font-size: 18px;
            color: var(--primary-gold);
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            padding: 10px 15px;
        }
        .game-card {
            background: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            transition: transform 0.2s;
            border: 1px solid #2a2e38;
        }
        .game-card:active {
            transform: scale(0.95);
        }
        .game-card img {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            display: block;
        }
        .game-info {
            padding: 8px;
            text-align: center;
        }
        .game-info h3 {
            margin: 0;
            font-size: 13px;
            font-weight: 500;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .intro-card {
            background: var(--card-bg);
            margin: 15px;
            padding: 20px;
            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);
            margin: 0;
        }
        .guidelines-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 10px;
            padding: 10px 15px;
        }
        .guideline-item {
            background: var(--card-bg);
            padding: 15px;
            border-radius: 12px;
            display: flex;
            gap: 15px;
            align-items: center;
        }
        .guideline-item i {
            font-size: 24px;
            color: var(--primary-gold);
            width: 30px;
            text-align: center;
        }
        .guideline-text h4 {
            margin: 0 0 5px 0;
            font-size: 15px;
        }
        .guideline-text p {
            margin: 0;
            font-size: 13px;
            color: var(--text-gray);
        }
        .winning-scroll {
            height: 200px;
            overflow-y: auto;
            background: #0a0c10;
            margin: 10px 15px;
            border-radius: 12px;
            padding: 10px;
            border: 1px solid #222;
        }
        .winning-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 5px;
            border-bottom: 1px solid #1c212a;
            font-size: 12px;
        }
        .winning-item span:last-child {
            color: var(--primary-gold);
            font-weight: bold;
        }
        .platform-elements {
            display: flex;
            justify-content: space-around;
            padding: 20px 15px;
            background: #161a21;
            margin: 20px 0;
        }
        .element-box {
            text-align: center;
            font-size: 11px;
            color: var(--text-gray);
        }
        .element-box i {
            font-size: 20px;
            display: block;
            margin-bottom: 5px;
            color: var(--primary-gold);
        }
        .comments-section {
            padding: 10px 15px;
        }
        .comment-card {
            background: var(--card-bg);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
        }
        .comment-user {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px;
        }
        .comment-user img {
            width: 30px;
            height: 30px;
            border-radius: 50%;
        }
        .comment-user span {
            font-size: 14px;
            font-weight: bold;
        }
        .comment-stars {
            color: var(--primary-gold);
            font-size: 12px;
            margin-bottom: 5px;
        }
        .comment-content {
            font-size: 13px;
            color: var(--text-gray);
        }
        .faq-section {
            padding: 10px 15px;
        }
        .faq-item {
            margin-bottom: 15px;
            background: var(--card-bg);
            border-radius: 10px;
            padding: 15px;
        }
        .faq-item h3 {
            font-size: 15px;
            margin: 0 0 10px 0;
            color: var(--primary-gold);
        }
        .faq-item p {
            font-size: 13px;
            color: var(--text-gray);
            margin: 0;
        }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60px;
            background: #1c212a;
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid #2a2e38;
            z-index: 2000;
        }
        .nav-item {
            text-decoration: none;
            color: var(--text-gray);
            text-align: center;
            font-size: 11px;
        }
        .nav-item i {
            display: block;
            font-size: 20px;
            margin-bottom: 2px;
        }
        footer {
            background: #0a0c10;
            padding: 30px 15px 100px;
            text-align: center;
            border-top: 1px solid #1c212a;
        }
        .footer-row {
            margin-bottom: 20px;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-bottom: 10px;
        }
        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            font-size: 13px;
        }
        .copyright {
            font-size: 12px;
            color: #555;
            margin-top: 10px;
        }