:root {
            --primary: #FFD700;
            --primary-variant: #B8860B;
            --secondary: #00A859;
            --accent: #E31837;
            --bg-main: #0F0F11;
            --bg-surface: #1C1D21;
            --bg-elevated: #25262B;
            --text-primary: #FFFFFF;
            --text-secondary: #A0A0A5;
            --border-default: #2D2E33;
            --radius: 12px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
            line-height: 1.5;
            padding-bottom: 70px;
        }

        header {
            height: 60px;
            background: var(--bg-surface);
            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-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;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

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

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

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

        .btn-register {
            background: var(--primary);
            color: #000;
        }

        .main-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 10px;
        }

        .banner {
            width: 100%;
            aspect-ratio: 2/1;
            border-radius: var(--radius);
            overflow: hidden;
            margin-bottom: 20px;
            cursor: pointer;
        }

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

        .jackpot-section {
            background: linear-gradient(135deg, #1c1d21 0%, #25262b 100%);
            padding: 20px;
            border-radius: var(--radius);
            text-align: center;
            border: 1px solid var(--primary);
            margin-bottom: 20px;
        }

        .jackpot-title {
            color: var(--primary);
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .jackpot-amount {
            font-size: 28px;
            font-weight: 900;
            color: #fff;
            font-family: 'Inter', sans-serif;
        }

        .intro-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: var(--radius);
            margin-bottom: 25px;
        }

        h1 {
            font-size: 1.25rem;
            color: var(--primary);
            margin-bottom: 10px;
            line-height: 1.2;
        }

        .intro-card p {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        h2 {
            font-size: 1.1rem;
            margin: 20px 0 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        h2::before {
            content: '';
            width: 4px;
            height: 18px;
            background: var(--primary);
            border-radius: 2px;
        }

        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 25px;
        }

        .game-card {
            background: var(--bg-surface);
            border-radius: 10px;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            border: 1px solid var(--border-default);
        }

        .game-card img {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            display: block;
        }

        .game-info {
            padding: 8px;
        }

        .game-info h3 {
            font-size: 0.85rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .game-provider {
            font-size: 0.7rem;
            color: var(--text-secondary);
        }

        .payments-section {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: var(--radius);
            text-align: center;
            margin-bottom: 25px;
        }

        .payment-icons {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            opacity: 0.7;
        }

        .payment-icons i {
            font-size: 24px;
        }

        .guidelines-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            margin-bottom: 25px;
        }

        .guide-card {
            background: var(--bg-elevated);
            padding: 15px;
            border-radius: var(--radius);
        }

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

        .guide-card p {
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        .winners-marquee {
            background: var(--bg-surface);
            overflow: hidden;
            padding: 10px 0;
            border-radius: var(--radius);
            margin-bottom: 25px;
        }

        .marquee-content {
            display: flex;
            animation: scroll 30s linear infinite;
            width: max-content;
        }

        .winner-item {
            padding: 0 20px;
            font-size: 0.8rem;
            border-right: 1px solid var(--border-default);
            display: flex;
            flex-direction: column;
        }

        .winner-amount {
            color: var(--secondary);
            font-weight: bold;
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .providers-wall {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin-bottom: 25px;
        }

        .provider-tag {
            background: var(--bg-elevated);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            color: var(--text-secondary);
        }

        .reviews-grid {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 25px;
        }

        .review-card {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: var(--radius);
        }

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

        .stars {
            color: var(--primary);
            font-size: 0.8rem;
        }

        .faq-section {
            margin-bottom: 25px;
        }

        .faq-item {
            background: var(--bg-surface);
            margin-bottom: 10px;
            border-radius: var(--radius);
            padding: 15px;
        }

        .faq-item h3 {
            font-size: 0.95rem;
            margin-bottom: 8px;
            color: var(--primary);
        }

        .faq-item p {
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        .safety-section {
            text-align: center;
            padding: 20px;
            background: var(--bg-elevated);
            border-radius: var(--radius);
            font-size: 0.8rem;
            color: var(--text-secondary);
        }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 65px;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-default);
            z-index: 1001;
        }

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

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

        .nav-item:nth-child(3) {
            background: var(--primary);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            color: #000;
            justify-content: center;
            margin-top: -20px;
            box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
        }

        footer {
            padding: 30px 15px 100px;
            background: var(--bg-main);
            border-top: 1px solid var(--border-default);
        }

        .footer-social {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
        }

        .footer-social a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.9rem;
        }

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

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.75rem;
        }

        .footer-copy {
            text-align: center;
            font-size: 0.7rem;
            color: var(--text-disabled);
        }