:root {
            --primary: #FFD700;
            --primary-dark: #B8860B;
            --secondary: #E60012;
            --accent: #00FFC8;
            --bg-main: #0B0E11;
            --bg-surface: #1B1F24;
            --bg-surface-light: #2B3139;
            --overlay: rgba(0, 0, 0, 0.7);
            --text-primary: #FFFFFF;
            --text-secondary: #A0AEC0;
            --text-muted: #718096;
            --text-inverse: #000000;
            --success: #00C853;
            --warning: #FFAB00;
            --error: #FF5252;
            --info: #2196F3;
            --border-subtle: #2D3748;
            --border-medium: #4A5568;
            --border-strong: #FFD700;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Roboto', 'Open Sans', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }
        h1, h2, h3 {
            font-family: 'Montserrat', 'Segoe UI', Roboto, sans-serif;
            font-weight: 700;
        }
        header {
            background-color: var(--bg-surface);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--primary);
        }
        header .logo-group {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: var(--text-primary);
        }
        header .logo-group img {
            width: 25px;
            height: 25px;
            object-fit: contain;
        }
        header .logo-group strong {
            font-size: 16px;
            font-weight: 400;
        }
        header .auth-buttons {
            display: flex;
            gap: 10px;
        }
        .btn-auth {
            padding: 6px 15px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login {
            background: transparent;
            color: var(--primary);
            border: 1px solid var(--primary);
        }
        .btn-register {
            background: var(--primary);
            color: var(--text-inverse);
        }
        .btn-auth:hover { opacity: 0.8; transform: translateY(-1px); }
        main { padding-bottom: 80px; }
        .banner-container {
            width: 100%;
            aspect-ratio: 2 / 1;
            cursor: pointer;
            overflow: hidden;
        }
        .banner-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .jackpot-box {
            background: linear-gradient(135deg, #1B1F24 0%, #0B0E11 100%);
            margin: 20px 15px;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--border-medium);
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-title {
            color: var(--text-secondary);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }
        .jackpot-amount {
            font-family: 'JetBrains Mono', monospace;
            font-size: 32px;
            color: var(--primary);
            font-weight: bold;
            text-shadow: 0 0 10px var(--primary);
        }
        .intro-card {
            margin: 20px 15px;
            padding: 25px;
            background: var(--bg-surface);
            border-radius: 15px;
            border-left: 5px solid var(--primary);
        }
        .intro-card h1 {
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 15px;
            line-height: 1.3;
        }
        .intro-card p {
            color: var(--text-secondary);
            font-size: 16px;
        }
        .section-title {
            padding: 0 15px;
            margin: 30px 0 20px;
            font-size: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--primary);
        }
        .section-title i { font-size: 18px; }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            padding: 0 15px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            transition: 0.3s;
            border: 1px solid var(--border-subtle);
        }
        .game-card:hover {
            border-color: var(--primary);
            transform: scale(1.02);
        }
        .game-card img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            display: block;
        }
        .game-card h3 {
            padding: 10px;
            font-size: 14px;
            text-align: center;
            color: var(--text-primary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .payment-methods {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            padding: 20px 15px;
            background: var(--bg-surface-light);
            margin-top: 30px;
        }
        .payment-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 11px;
            color: var(--text-secondary);
            text-align: center;
        }
        .payment-item i {
            font-size: 24px;
            color: var(--primary);
        }
        .guide-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            padding: 0 15px;
            margin-top: 20px;
        }
        .guide-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border-subtle);
        }
        .guide-card h3 {
            color: var(--primary);
            font-size: 18px;
            margin-bottom: 10px;
        }
        .guide-card p {
            color: var(--text-secondary);
            font-size: 14px;
        }
        .win-list {
            padding: 0 15px;
            margin: 20px 0;
        }
        .win-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            font-size: 13px;
        }
        .win-table th {
            background: var(--bg-surface-light);
            color: var(--primary);
            padding: 12px;
            text-align: left;
        }
        .win-table td {
            padding: 12px;
            border-bottom: 1px solid var(--border-subtle);
            color: var(--text-secondary);
        }
        .win-table td:nth-child(3) { color: var(--success); font-weight: bold; }
        .provider-wall {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            padding: 0 15px;
            margin-top: 20px;
        }
        .provider-box {
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            font-weight: bold;
            color: var(--text-inverse);
            font-size: 14px;
        }
        .provider-box:nth-child(odd) { background: var(--primary); }
        .provider-box:nth-child(even) { background: var(--secondary); }
        .review-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            padding: 0 15px;
        }
        .review-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border-subtle);
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-header i {
            font-size: 30px;
            color: var(--primary);
        }
        .review-name { font-weight: bold; color: var(--text-primary); }
        .review-stars { color: var(--warning); font-size: 12px; margin-left: 10px; }
        .review-text { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; }
        .review-date { font-size: 12px; color: var(--text-muted); }
        .faq-container { padding: 0 15px; margin-top: 20px; }
        .faq-item {
            background: var(--bg-surface);
            margin-bottom: 10px;
            border-radius: 8px;
            border: 1px solid var(--border-subtle);
            padding: 15px;
        }
        .faq-item h3 {
            font-size: 16px;
            color: var(--primary);
            margin-bottom: 10px;
        }
        .faq-item p {
            font-size: 14px;
            color: var(--text-secondary);
        }
        .security-box {
            margin: 30px 15px;
            padding: 25px;
            background: var(--bg-surface);
            border-radius: 15px;
            text-align: center;
            border: 1px dashed var(--primary);
        }
        .security-box .ssl-badge {
            font-size: 40px;
            color: var(--success);
            margin-bottom: 15px;
        }
        .security-box p {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 10px;
        }
        .security-box a {
            color: var(--primary);
            text-decoration: none;
            font-weight: bold;
        }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            align-items: center;
            height: 65px;
            border-top: 2px solid var(--primary);
            z-index: 1000;
            padding-bottom: env(safe-area-inset-bottom);
        }
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            text-decoration: none;
            color: var(--text-secondary);
            font-size: 11px;
            flex: 1;
        }
        .nav-item i { font-size: 20px; }
        .nav-item:hover { color: var(--primary); }
        footer {
            background: var(--bg-surface);
            padding: 40px 15px 100px;
            text-align: center;
            border-top: 1px solid var(--border-subtle);
        }
        footer .contact-row {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        footer .contact-row a {
            color: var(--text-primary);
            text-decoration: none;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        footer .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            text-align: left;
            max-width: 600px;
            margin: 0 auto 30px;
        }
        footer .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 13px;
        }
        footer .copyright {
            color: var(--text-muted);
            font-size: 12px;
            border-top: 1px solid var(--border-subtle);
            padding-top: 20px;
        }