:root {
            --primary-gold: #FFD700;
            --primary-gold-hover: #FFC107;
            --secondary-accent: #C0C0C0;
            --cta-red: #E63946;
            --main-bg: #050505;
            --surface: #121212;
            --card: #1E1E1E;
            --overlay: rgba(0, 0, 0, 0.85);
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-muted: #707070;
            --border-default: #2C2C2C;
            --border-active: #FFD700;
            --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-display: 'Montserrat', 'Archivo Black', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--main-bg);
            color: var(--text-primary);
            font-family: var(--font-main);
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        header {
            background-color: var(--surface);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-default);
        }
        header .brand {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        header .brand img {
            width: 25px;
            height: 25px;
            object-fit: contain;
        }
        header .brand strong {
            font-size: 16px;
            font-weight: 400;
            color: var(--primary-gold);
            font-family: var(--font-display);
        }
        header .auth-buttons {
            display: flex;
            gap: 10px;
        }
        header button {
            padding: 6px 15px;
            border-radius: 4px;
            border: none;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: 0.3s;
        }
        header .login-btn {
            background: transparent;
            color: var(--primary-gold);
            border: 1px solid var(--primary-gold);
        }
        header .register-btn {
            background: var(--primary-gold);
            color: #000;
        }
        main {
            max-width: 1000px;
            margin: 0 auto;
            padding: 15px;
        }
        .banner {
            width: 100%;
            aspect-ratio: 2 / 1;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 20px;
            cursor: pointer;
            border: 1px solid var(--border-default);
        }
        .banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .jackpot-container {
            background: linear-gradient(145deg, #1e1e1e, #0a0a0a);
            border: 2px solid var(--primary-gold);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 25px;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }
        .jackpot-label {
            font-family: var(--font-display);
            color: var(--secondary-accent);
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }
        .jackpot-value {
            font-family: 'Roboto Mono', monospace;
            font-size: 32px;
            font-weight: 800;
            color: var(--primary-gold);
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }
        .intro-card {
            background: var(--card);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 25px;
            border-left: 4px solid var(--primary-gold);
        }
        .intro-card h1 {
            font-family: var(--font-display);
            font-size: 24px;
            color: var(--primary-gold);
            margin-bottom: 10px;
        }
        .intro-card p {
            color: var(--text-secondary);
            font-size: 15px;
        }
        .section-title {
            font-family: var(--font-display);
            font-size: 20px;
            margin: 25px 0 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .section-title::before {
            content: '';
            width: 4px;
            height: 20px;
            background: var(--primary-gold);
            display: inline-block;
        }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 20px;
        }
        .game-card {
            background: var(--card);
            border-radius: 10px;
            overflow: hidden;
            text-decoration: none;
            transition: transform 0.2s;
            border: 1px solid var(--border-default);
        }
        .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: 10px;
            font-size: 14px;
            color: var(--text-primary);
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .payments-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-bottom: 30px;
        }
        .payment-item {
            background: var(--surface);
            padding: 15px 5px;
            border-radius: 8px;
            text-align: center;
            border: 1px solid var(--border-default);
        }
        .payment-item i {
            font-size: 24px;
            color: var(--primary-gold);
            margin-bottom: 5px;
        }
        .payment-item span {
            display: block;
            font-size: 11px;
            color: var(--text-secondary);
        }
        .guide-section {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            margin-bottom: 30px;
        }
        .guide-card {
            background: var(--surface);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border-default);
        }
        .guide-card h3 {
            color: var(--primary-gold);
            margin-bottom: 10px;
            font-size: 18px;
        }
        .guide-card p {
            font-size: 14px;
            color: var(--text-secondary);
        }
        .win-records {
            background: var(--surface);
            border-radius: 12px;
            padding: 15px;
            margin-bottom: 30px;
        }
        .win-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-default);
        }
        .win-item:last-child { border-bottom: none; }
        .win-user { color: var(--primary-gold); font-weight: 600; }
        .win-game { font-size: 13px; color: var(--text-secondary); }
        .win-amount { color: var(--primary-gold); font-weight: 700; }
        .win-time { font-size: 11px; color: var(--text-muted); }
        .providers-wall {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 30px;
        }
        .provider-block {
            flex: 1 1 calc(50% - 10px);
            background: linear-gradient(45deg, #1e1e1e, #2c2c2c);
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            font-weight: bold;
            color: var(--secondary-accent);
            border: 1px solid var(--border-default);
        }
        .reviews-container {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 30px;
        }
        .review-card {
            background: var(--card);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border-default);
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
        }
        .review-avatar {
            width: 40px;
            height: 40px;
            background: var(--surface);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-gold);
            border: 1px solid var(--primary-gold);
        }
        .review-info h4 { font-size: 15px; }
        .stars { color: var(--primary-gold); font-size: 12px; }
        .review-content { font-size: 14px; color: var(--text-secondary); margin-bottom: 8px; }
        .review-date { font-size: 11px; color: var(--text-muted); }
        .faq-section { margin-bottom: 30px; }
        .faq-item {
            background: var(--surface);
            border-radius: 8px;
            margin-bottom: 10px;
            padding: 15px;
            border: 1px solid var(--border-default);
        }
        .faq-item h3 { font-size: 16px; color: var(--primary-gold); margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .security-section {
            background: #0a0a0a;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px dashed var(--border-default);
            margin-bottom: 30px;
        }
        .security-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
            font-size: 24px;
            color: var(--primary-gold);
        }
        .security-text { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
        .age-limit {
            display: inline-block;
            border: 2px solid var(--cta-red);
            color: var(--cta-red);
            border-radius: 50%;
            width: 35px;
            height: 35px;
            line-height: 31px;
            font-weight: 800;
            margin-bottom: 10px;
        }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background: var(--surface);
            border-top: 1px solid var(--border-default);
            display: flex;
            justify-content: space-around;
            align-items: center;
            z-index: 1001;
        }
        .nav-item {
            text-decoration: none;
            color: var(--text-secondary);
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 11px;
            gap: 4px;
        }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: var(--primary-gold); }
        footer {
            background: var(--surface);
            padding: 30px 15px 80px;
            text-align: center;
            border-top: 1px solid var(--border-default);
        }
        .footer-contact {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            margin-bottom: 25px;
        }
        .footer-contact a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 14px;
            padding: 5px 10px;
            background: var(--card);
            border-radius: 5px;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 25px;
        }
        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 13px;
        }
        .copyright {
            font-size: 12px;
            color: var(--text-muted);
            border-top: 1px solid var(--border-default);
            padding-top: 20px;
        }