:root {
            --primary-gold: #D4AF37;
            --primary-gold-light: #F9E076;
            --primary-gold-dark: #AA8123;
            --accent-red: #E01E37;
            --accent-red-glow: #FF4D6D;
            --bg-base: #0B0E11;
            --bg-surface-1: #161A1E;
            --bg-surface-2: #1E2329;
            --bg-surface-3: #2B3139;
            --text-high: #FFFFFF;
            --text-medium: #B7BDC6;
            --text-low: #5E6673;
            --text-brand: #FCD535;
            --success: #0ECB81;
            --error: #F6465D;
            --warning: #F0B90B;
            --safe-bet: #00FFA3;
            --border-subtle: #2F3336;
            --divider: #1E2329;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        body {
            background-color: var(--bg-base);
            color: var(--text-high);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }

        h1, h2, h3 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }

        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: var(--bg-surface-1);
            padding: 12px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--border-subtle);
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .header-left img {
            width: 25px;
            height: 25px;
            object-fit: contain;
        }

        .header-left strong {
            font-size: 16px;
            font-weight: 400;
            color: var(--primary-gold-light);
        }

        .header-right {
            display: flex;
            gap: 8px;
        }

        .btn-login, .btn-register {
            padding: 6px 16px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: opacity 0.2s;
        }

        .btn-login {
            background-color: transparent;
            color: var(--text-high);
            border: 1px solid var(--border-subtle);
        }

        .btn-register {
            background-color: var(--primary-gold);
            color: var(--bg-base);
        }

        .main-container {
            max-width: 600px;
            margin: 0 auto;
        }

        .banner-box {
            width: 100%;
            aspect-ratio: 2/1;
            cursor: pointer;
        }

        .banner-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .jackpot-section {
            background: linear-gradient(135deg, var(--bg-surface-2), var(--bg-surface-1));
            margin: 16px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--primary-gold-dark);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
        }

        .jackpot-title {
            color: var(--primary-gold-light);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }

        .jackpot-amount {
            font-family: 'Oswald', sans-serif;
            font-size: 32px;
            color: var(--text-brand);
            font-weight: 700;
        }

        .intro-card {
            background-color: var(--bg-surface-1);
            margin: 16px;
            padding: 20px;
            border-radius: 12px;
            border-left: 4px solid var(--primary-gold);
        }

        .intro-card h1 {
            font-size: 20px;
            color: var(--primary-gold-light);
            margin-bottom: 10px;
        }

        .intro-card p {
            font-size: 14px;
            color: var(--text-medium);
        }

        .section-header {
            padding: 0 16px;
            margin: 24px 0 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-header h2 {
            font-size: 18px;
            color: var(--text-high);
        }

        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 0 16px;
        }

        .game-card {
            text-decoration: none;
            background-color: var(--bg-surface-2);
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            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-card h3 {
            padding: 8px;
            font-size: 14px;
            color: var(--text-high);
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .payment-section {
            background-color: var(--bg-surface-1);
            margin: 24px 16px;
            padding: 20px;
            border-radius: 12px;
        }

        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            text-align: center;
        }

        .payment-item i {
            font-size: 24px;
            color: var(--primary-gold);
            margin-bottom: 4px;
            display: block;
        }

        .payment-item span {
            font-size: 10px;
            color: var(--text-medium);
        }

        .guide-section {
            padding: 0 16px;
        }

        .guide-card {
            background-color: var(--bg-surface-1);
            padding: 16px;
            border-radius: 12px;
            margin-bottom: 12px;
        }

        .guide-card h3 {
            font-size: 16px;
            color: var(--primary-gold-light);
            margin-bottom: 8px;
        }

        .guide-card p {
            font-size: 14px;
            color: var(--text-medium);
        }

        .lottery-section {
            background-color: var(--bg-surface-2);
            margin: 24px 16px;
            border-radius: 12px;
            overflow: hidden;
        }

        .lottery-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 16px;
            border-bottom: 1px solid var(--divider);
        }

        .lottery-info div:first-child {
            font-weight: 600;
            color: var(--text-high);
            font-size: 14px;
        }

        .lottery-info div:last-child {
            font-size: 12px;
            color: var(--text-low);
        }

        .lottery-amount {
            color: var(--success);
            font-family: 'Oswald', sans-serif;
            font-weight: 600;
        }

        .provider-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            padding: 0 16px;
            margin: 20px 0;
        }

        .provider-tag {
            background-color: var(--bg-surface-3);
            color: var(--primary-gold-light);
            padding: 12px;
            text-align: center;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
        }

        .comment-section {
            padding: 0 16px;
        }

        .comment-card {
            background-color: var(--bg-surface-1);
            padding: 16px;
            border-radius: 12px;
            margin-bottom: 12px;
            border: 1px solid var(--divider);
        }

        .comment-user {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .comment-user i {
            font-size: 20px;
            color: var(--text-low);
            background: var(--bg-surface-3);
            padding: 8px;
            border-radius: 50%;
        }

        .stars {
            color: var(--warning);
            font-size: 12px;
        }

        .comment-date {
            font-size: 12px;
            color: var(--text-low);
            margin-top: 8px;
        }

        .faq-section {
            padding: 0 16px;
        }

        .faq-item {
            margin-bottom: 16px;
            background-color: var(--bg-surface-1);
            padding: 16px;
            border-radius: 8px;
        }

        .faq-item h3 {
            font-size: 15px;
            color: var(--text-high);
            margin-bottom: 8px;
        }

        .faq-item p {
            font-size: 14px;
            color: var(--text-medium);
        }

        .security-section {
            background-color: var(--bg-surface-2);
            margin: 24px 16px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
        }

        .security-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
            font-size: 24px;
            color: var(--safe-bet);
        }

        .security-section p {
            font-size: 12px;
            color: var(--text-low);
            margin-bottom: 10px;
        }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            max-width: 600px;
            background-color: var(--bg-surface-1);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-subtle);
            z-index: 1001;
        }

        .nav-item {
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            color: var(--text-medium);
        }

        .nav-item i {
            font-size: 20px;
        }

        .nav-item span {
            font-size: 11px;
        }

        footer {
            background-color: var(--bg-base);
            padding: 30px 16px 100px;
            border-top: 1px solid var(--divider);
        }

        .footer-contact {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 24px;
        }

        .footer-contact a {
            color: var(--text-medium);
            text-decoration: none;
            font-size: 14px;
            padding: 8px;
            background: var(--bg-surface-1);
            border-radius: 4px;
            text-align: center;
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 24px;
        }

        .footer-links a {
            color: var(--text-low);
            text-decoration: none;
            font-size: 13px;
        }

        .copyright {
            text-align: center;
            font-size: 12px;
            color: var(--text-low);
            border-top: 1px solid var(--divider);
            padding-top: 20px;
        }