:root {
            --primary-bg: #1a1d24;
            --card-bg: #252932;
            --accent-gold: #d4af37;
            --text-main: #ffffff;
            --text-dim: #a0a5b1;
            --btn-grad: linear-gradient(135deg, #d4af37 0%, #f9e29c 100%);
            --btn-red: linear-gradient(135deg, #e63946 0%, #b22222 100%);
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            background-color: var(--primary-bg);
            color: var(--text-main);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            padding-bottom: 70px;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        header {
            background-color: #0f1216;
            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: 8px;
        }
        .header-left img {
            width: 25px;
            height: 25px;
            border-radius: 4px;
        }
        .header-left strong {
            font-size: 16px;
            font-weight: normal;
            letter-spacing: 0.5px;
        }
        .header-right {
            display: flex;
            gap: 10px;
        }
        .btn-login, .btn-register {
            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: var(--btn-grad);
            color: #000;
        }
        main {
            padding: 10px;
            max-width: 800px;
            margin: 0 auto;
        }
        .banner {
            width: 100%;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 20px;
            cursor: pointer;
            aspect-ratio: 2/1;
        }
        .banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .jackpot-card {
            background: radial-gradient(circle, #3a3f4b 0%, #1a1d24 100%);
            border: 2px solid var(--accent-gold);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
        }
        .jackpot-title {
            color: var(--accent-gold);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .jackpot-amount {
            font-size: 32px;
            font-weight: 800;
            color: #fff;
            text-shadow: 0 0 10px rgba(212,175,55,0.5);
        }
        .section-title {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 18px;
            margin: 20px 0 15px;
            color: var(--accent-gold);
        }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 25px;
        }
        .game-card {
            background: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.2s;
        }
        .game-card img {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            display: block;
        }
        .game-info {
            padding: 8px;
            text-align: center;
            font-size: 13px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .intro-card {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 20px;
            margin: 25px 0;
            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 {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            margin: 25px 0;
        }
        .guide-item {
            background: rgba(212, 175, 55, 0.05);
            padding: 15px;
            border-radius: 10px;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }
        .guide-item h3 {
            font-size: 16px;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .winners-box {
            background: #121418;
            border-radius: 12px;
            padding: 15px;
            height: 250px;
            overflow-y: hidden;
            position: relative;
        }
        .winner-scroll {
            animation: scrollUp 40s linear infinite;
        }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-100%); }
        }
        .winner-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid #252932;
            font-size: 13px;
        }
        .winner-name { color: var(--text-dim); }
        .winner-amt { color: #4caf50; font-weight: bold; }
        .trust-badges {
            display: flex;
            justify-content: space-around;
            padding: 20px 0;
            background: var(--card-bg);
            border-radius: 12px;
            margin: 25px 0;
        }
        .badge-item {
            text-align: center;
            font-size: 11px;
        }
        .badge-item i {
            font-size: 24px;
            color: var(--accent-gold);
            display: block;
            margin-bottom: 5px;
        }
        .reviews {
            margin: 25px 0;
        }
        .review-card {
            background: var(--card-bg);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 12px;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
        }
        .stars { color: #ffc107; font-size: 12px; }
        .reviewer { font-weight: bold; font-size: 14px; }
        .review-text { font-size: 13px; color: var(--text-dim); font-style: italic; }
        .faq-section {
            margin: 30px 0;
        }
        .faq-item {
            background: var(--card-bg);
            border-radius: 8px;
            margin-bottom: 10px;
            padding: 15px;
        }
        .faq-item h3 {
            font-size: 15px;
            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;
            background: #0f1216;
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
            z-index: 1001;
        }
        .nav-item {
            text-align: center;
            font-size: 11px;
            color: var(--text-dim);
            flex: 1;
        }
        .nav-item i {
            font-size: 18px;
            display: block;
            margin-bottom: 2px;
        }
        footer {
            background: #0f1216;
            padding: 30px 15px 100px;
            text-align: center;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        .footer-links a {
            color: var(--text-dim);
            font-size: 13px;
        }
        .copyright {
            font-size: 12px;
            color: #555;
            border-top: 1px solid #222;
            padding-top: 15px;
        }
        @media (min-width: 600px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .guidelines { grid-template-columns: 1fr 1fr; }
        }