:root {
            --primary: #D4AF37;
            --primary-variant: #B8962E;
            --secondary: #1A1A1A;
            --accent: #FFD700;
            --bg-base: #0A0A0A;
            --bg-surface: #161616;
            --bg-elevated: #222222;
            --bg-contrast: #1F1F1F;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-muted: #757575;
            --text-brand: #D4AF37;
            --on-brand: #000000;
            --success: #2ECC71;
            --error: #E74C3C;
            --warning: #F1C40F;
            --info: #3498DB;
            --safe-gambling: #00FF41;
            --border-default: #333333;
            --border-subtle: #222222;
            --border-active: #D4AF37;
            --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-heading: 'Montserrat', 'Inter', sans-serif;
        }

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

        body {
            background-color: var(--bg-base);
            color: var(--text-primary);
            font-family: var(--font-main);
            line-height: 1.5;
            padding-bottom: 70px;
        }

        header {
            background-color: var(--secondary);
            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-left {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .header-left img {
            width: 25px;
            height: 25px;
            border-radius: 4px;
        }

        .header-left strong {
            font-size: 16px;
            font-weight: 400;
            color: var(--text-brand);
            font-family: var(--font-heading);
        }

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

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

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

        .btn-register {
            background-color: var(--primary);
            color: var(--on-brand);
        }

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

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

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

        .jackpot-section {
            background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-surface) 100%);
            border: 1px solid var(--border-active);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
        }

        .jackpot-title {
            color: var(--text-secondary);
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 5px;
        }

        .jackpot-amount {
            font-family: var(--font-heading);
            font-size: 2.25rem;
            font-weight: 900;
            color: var(--accent);
            text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
        }

        .platform-card {
            background-color: var(--bg-surface);
            padding: 25px;
            border-radius: 12px;
            margin-bottom: 20px;
            border: 1px solid var(--border-subtle);
        }

        .platform-card h1 {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 12px;
            line-height: 1.2;
        }

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

        .section-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 25px 0 15px;
        }

        .section-header h2 {
            font-size: 1.25rem;
            font-family: var(--font-heading);
            color: var(--text-primary);
        }

        .section-header i {
            color: var(--primary);
        }

        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-bottom: 20px;
        }

        .game-card {
            background-color: var(--bg-surface);
            border-radius: 10px;
            overflow: hidden;
            text-decoration: none;
            border: 1px solid var(--border-subtle);
            transition: transform 0.2s;
        }

        .game-card:active {
            transform: scale(0.97);
        }

        .game-image {
            width: 100%;
            aspect-ratio: 1 / 1;
            position: relative;
            overflow: hidden;
        }

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

        .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: 2px;
        }

        .game-info span {
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        .payment-section {
            background-color: var(--bg-contrast);
            padding: 20px;
            border-radius: 12px;
            margin: 30px 0;
            text-align: center;
        }

        .payment-icons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            opacity: 0.8;
        }

        .payment-icons i {
            font-size: 1.5rem;
            color: var(--text-secondary);
        }

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

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

        .guideline-card h3 {
            font-size: 1.125rem;
            color: var(--primary);
            margin-bottom: 10px;
        }

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

        .marquee-container {
            background-color: var(--bg-surface);
            padding: 15px 0;
            overflow: hidden;
            margin: 20px 0;
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }

        .marquee-content {
            display: flex;
            gap: 20px;
            animation: marquee 30s linear infinite;
        }

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

        .win-tag {
            background-color: var(--bg-elevated);
            padding: 8px 15px;
            border-radius: 30px;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
            border: 1px solid var(--border-subtle);
        }

        .win-tag strong { color: var(--success); }

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

        .provider-tag {
            background-color: var(--bg-elevated);
            padding: 5px 12px;
            border-radius: 4px;
            font-size: 0.75rem;
            color: var(--text-secondary);
            border: 1px solid var(--border-default);
        }

        .review-card {
            background-color: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 15px;
        }

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

        .review-user i {
            width: 40px;
            height: 40px;
            background-color: var(--bg-elevated);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
        }

        .stars {
            color: var(--warning);
            font-size: 0.75rem;
            margin-bottom: 8px;
        }

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

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

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

        .responsible-section {
            text-align: center;
            padding: 30px 20px;
            background-color: var(--bg-contrast);
            border-radius: 12px;
            margin-top: 20px;
        }

        .responsible-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 15px;
        }

        .responsible-icons span {
            border: 2px solid var(--safe-gambling);
            color: var(--safe-gambling);
            padding: 2px 8px;
            border-radius: 50%;
            font-weight: bold;
            font-size: 14px;
        }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--secondary);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
        }

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

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

        footer {
            background-color: var(--bg-base);
            padding: 40px 20px 100px;
            border-top: 1px solid var(--border-subtle);
        }

        .footer-social {
            text-align: center;
            margin-bottom: 30px;
        }

        .footer-social a {
            color: var(--text-secondary);
            margin: 0 10px;
            text-decoration: none;
            font-size: 0.875rem;
        }

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

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

        .footer-bottom {
            text-align: center;
            color: var(--text-muted);
            font-size: 0.75rem;
        }