:root {
            --primary: #D4AF37;
            --primary-variant: #F9E076;
            --secondary: #1E1E1E;
            --accent: #FFD700;
            --bg-default: #0A0A0B;
            --bg-paper: #141416;
            --bg-surface: #1C1C1E;
            --bg-elevated: #252528;
            --text-primary: #FFFFFF;
            --text-secondary: #A1A1AA;
            --border-default: #27272A;
            --border-interactive: #D4AF37;
            --success: #22C55E;
            --win-color: #FFD700;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }
        body {
            background-color: var(--bg-default);
            color: var(--text-primary);
            font-family: 'Inter', 'Roboto', system-ui, sans-serif;
            line-height: 1.5;
            padding-bottom: 70px;
        }
        h1, h2, h3 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }
        header {
            height: 60px;
            background: var(--bg-paper);
            border-bottom: 1px solid var(--border-default);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-left {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .header-left img {
            width: 25px;
            height: 25px;
            object-fit: contain;
        }
        .header-left strong {
            font-size: 16px;
            font-weight: 400;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .header-right {
            display: flex;
            gap: 10px;
        }
        .btn {
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login {
            background: transparent;
            color: var(--text-primary);
            border: 1px solid var(--border-default);
        }
        .btn-register {
            background: var(--primary);
            color: var(--bg-default);
        }
        .banner {
            width: 100%;
            aspect-ratio: 2/1;
            cursor: pointer;
        }
        .banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .jackpot-container {
            margin: 20px 15px;
            background: linear-gradient(135deg, var(--bg-paper) 0%, var(--bg-surface) 100%);
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--primary);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
        }
        .jackpot-title {
            color: var(--primary);
            font-size: 14px;
            text-transform: uppercase;
            margin-bottom: 10px;
            letter-spacing: 2px;
        }
        .jackpot-amount {
            font-family: 'JetBrains Mono', monospace;
            font-size: 28px;
            font-weight: 800;
            color: var(--win-color);
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }
        .intro-card {
            margin: 0 15px 20px;
            padding: 20px;
            background: var(--bg-paper);
            border-radius: 15px;
            border-left: 4px solid var(--primary);
        }
        .intro-card h1 {
            font-size: 1.25rem;
            margin-bottom: 10px;
            color: var(--primary-variant);
        }
        .intro-card p {
            font-size: 0.875rem;
            color: var(--text-secondary);
        }
        .section-title {
            margin: 25px 15px 15px;
            font-size: 1.125rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .section-title::before {
            content: "";
            width: 4px;
            height: 18px;
            background: var(--primary);
            border-radius: 2px;
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            padding: 0 15px;
        }
        .game-card {
            background: var(--bg-paper);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            transition: transform 0.2s;
            border: 1px solid var(--border-default);
        }
        .game-card:active {
            transform: scale(0.96);
        }
        .game-image {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            display: block;
        }
        .game-info {
            padding: 10px;
        }
        .game-info h3 {
            font-size: 0.875rem;
            color: var(--text-primary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-bottom: 4px;
        }
        .game-provider {
            font-size: 0.75rem;
            color: var(--text-secondary);
        }
        .payment-license {
            margin: 30px 15px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            text-align: center;
        }
        .payment-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }
        .payment-item i {
            font-size: 24px;
            color: var(--text-secondary);
        }
        .payment-item span {
            font-size: 10px;
            color: var(--text-secondary);
        }
        .guides-section {
            padding: 0 15px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .guide-card {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
        }
        .guide-card h3 {
            color: var(--primary);
            margin-bottom: 8px;
            font-size: 1rem;
        }
        .guide-card p {
            font-size: 0.875rem;
            color: var(--text-secondary);
        }
        .winners-marquee {
            margin: 20px 0;
            background: var(--bg-elevated);
            padding: 10px 0;
            overflow: hidden;
            white-space: nowrap;
        }
        .marquee-content {
            display: inline-block;
            animation: marquee 30s linear infinite;
        }
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .win-record {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--bg-paper);
            padding: 5px 15px;
            border-radius: 20px;
            margin: 0 10px;
            border: 1px solid var(--border-default);
        }
        .win-user { color: var(--primary-variant); font-weight: 600; font-size: 12px; }
        .win-amount { color: var(--success); font-weight: 700; font-size: 12px; }
        .provider-wall {
            margin: 20px 15px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            opacity: 0.7;
        }
        .provider-tag {
            background: var(--bg-paper);
            padding: 5px 12px;
            border-radius: 4px;
            font-size: 12px;
            border: 1px solid var(--border-default);
        }
        .reviews-section {
            padding: 0 15px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .review-card {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }
        .user-meta { display: flex; align-items: center; gap: 8px; }
        .user-meta i { font-size: 20px; color: var(--primary); }
        .stars { color: var(--win-color); font-size: 12px; }
        .faq-section { padding: 0 15px; }
        .faq-item {
            background: var(--bg-paper);
            margin-bottom: 10px;
            border-radius: 8px;
            overflow: hidden;
        }
        .faq-question {
            padding: 15px;
            font-weight: 600;
            cursor: pointer;
            color: var(--primary-variant);
            font-size: 0.9rem;
        }
        .faq-answer {
            padding: 0 15px 15px;
            color: var(--text-secondary);
            font-size: 0.85rem;
        }
        .security-section {
            margin: 30px 15px;
            padding: 20px;
            background: rgba(34, 197, 94, 0.05);
            border-radius: 12px;
            border: 1px dashed var(--success);
            text-align: center;
        }
        .security-section i { font-size: 30px; color: var(--success); margin-bottom: 10px; }
        .security-section p { font-size: 0.8rem; color: var(--text-secondary); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 65px;
            background: var(--bg-paper);
            border-top: 1px solid var(--border-default);
            display: flex;
            justify-content: space-around;
            align-items: center;
            z-index: 2000;
        }
        .nav-item {
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            color: var(--text-secondary);
        }
        .nav-item i { font-size: 20px; }
        .nav-item span { font-size: 10px; }
        footer {
            background: var(--bg-paper);
            padding: 30px 15px;
            border-top: 1px solid var(--border-default);
        }
        .footer-contact {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-bottom: 30px;
        }
        .footer-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.85rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }
        .copyright {
            text-align: center;
            font-size: 0.75rem;
            color: var(--text-hint);
            border-top: 1px solid var(--border-default);
            padding-top: 20px;
        }