:root {
            --bg-main: #0B0E11;
            --bg-surface: #1B2028;
            --bg-surface-light: #2D323B;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --brand-primary: #F7C948;
            --brand-primary-dark: #EAB308;
            --brand-primary-light: #FDE68A;
            --brand-secondary: #C5A059;
            --brand-accent: #FF3E3E;
            --semantic-success: #22C55E;
            --semantic-error: #EF4444;
            --semantic-warning: #F59E0B;
            --semantic-info: #3B82F6;
            --text-primary: #FFFFFF;
            --text-secondary: #94A3B8;
            --text-muted: #64748B;
            --text-brand-contrast: #0B0E11;
            --border-default: #2D3748;
            --border-subtle: #1E293B;
            --border-active: #F7C948;
            --font-primary: 'Montserrat', sans-serif;
            --font-secondary: 'Inter', sans-serif;
            --font-display: 'Archivo Black', sans-serif;
        }

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

        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-secondary);
            line-height: 1.5;
            overflow-x: hidden;
        }

        header {
            background-color: var(--bg-surface);
            border-bottom: 1px solid var(--border-default);
            padding: 0 20px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        header .logo-section {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: inherit;
        }

        header .logo-section img {
            width: 25px;
            height: 25px;
            object-fit: cover;
        }

        header .logo-section strong {
            font-size: 16px;
            font-weight: 400;
            color: var(--brand-primary);
            text-transform: uppercase;
        }

        header .auth-buttons {
            display: flex;
            gap: 12px;
        }

        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-family: var(--font-primary);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-size: 14px;
        }

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

        .btn-login:hover {
            border-color: var(--brand-primary);
            color: var(--brand-primary);
        }

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

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

        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

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

        .hero-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .hero-banner:hover img {
            transform: scale(1.03);
        }

        .jackpot-container {
            background: linear-gradient(135deg, var(--bg-surface), #252a34);
            border: 2px solid var(--brand-secondary);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin: 20px 0;
            box-shadow: 0 0 20px rgba(247, 201, 72, 0.2);
        }

        .jackpot-label {
            color: var(--brand-primary);
            font-family: var(--font-display);
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }

        .jackpot-value {
            font-family: var(--font-display);
            font-size: 36px;
            color: #fff;
            text-shadow: 0 0 10px var(--brand-primary);
        }

        .intro-card {
            background-color: var(--bg-surface);
            border-radius: 16px;
            padding: 30px;
            margin: 20px 0;
            border-left: 5px solid var(--brand-primary);
        }

        .intro-card h1 {
            font-family: var(--font-display);
            font-size: 32px;
            color: var(--brand-primary);
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .intro-card p {
            color: var(--text-secondary);
            font-size: 16px;
            line-height: 1.6;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: 24px;
            text-align: center;
            margin: 40px 0 20px;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .section-title::before, .section-title::after {
            content: '';
            height: 2px;
            width: 50px;
            background: var(--brand-primary);
        }

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

        .game-card {
            background-color: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid var(--border-subtle);
        }

        .game-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            border-color: var(--brand-primary);
        }

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

        .game-card h3 {
            padding: 12px;
            font-size: 14px;
            color: var(--text-primary);
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .payment-licenses {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin: 30px 0;
        }

        .payment-item {
            background-color: var(--bg-surface-light);
            padding: 15px 10px;
            border-radius: 8px;
            text-align: center;
            font-size: 12px;
            color: var(--text-secondary);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            border: 1px solid var(--border-subtle);
        }

        .payment-item i {
            font-size: 20px;
            color: var(--brand-primary);
        }

        .guidelines {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

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

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

        .guideline-card p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .winner-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background-color: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            font-size: 14px;
        }

        .winner-table th {
            background-color: var(--bg-surface-light);
            color: var(--brand-primary);
            padding: 15px;
            text-align: left;
            text-transform: uppercase;
            font-size: 12px;
        }

        .winner-table td {
            padding: 12px 15px;
            border-bottom: 1px solid var(--border-subtle);
            color: var(--text-secondary);
        }

        .winner-table tr:last-child td {
            border-bottom: none;
        }

        .win-amount {
            color: var(--semantic-success);
            font-weight: 700;
        }

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

        .provider-tag {
            padding: 8px 16px;
            background-color: var(--bg-surface-light);
            border: 1px solid var(--brand-secondary);
            color: var(--brand-primary);
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

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

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

        .review-header i {
            font-size: 30px;
            color: var(--brand-primary);
        }

        .review-header .user-info {
            display: flex;
            flex-direction: column;
        }

        .review-header .user-name {
            font-weight: 600;
            font-size: 15px;
        }

        .review-header .stars {
            color: #FFD700;
            font-size: 12px;
        }

        .review-content {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 10px;
            font-style: italic;
        }

        .review-date {
            font-size: 12px;
            color: var(--text-muted);
            text-align: right;
        }

        .faq-section {
            margin: 40px 0;
        }

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

        .faq-question {
            padding: 15px 20px;
            color: var(--brand-primary);
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-answer {
            padding: 0 20px 15px;
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.6;
        }

        .security-footer {
            background-color: var(--bg-surface);
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            margin: 40px 0;
            border: 1px dashed var(--brand-secondary);
        }

        .security-icons {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .security-icon {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: var(--text-secondary);
        }

        .security-icon i {
            font-size: 24px;
            color: var(--brand-primary);
        }

        .security-footer p {
            font-size: 14px;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto 15px;
        }

        .security-footer a {
            color: var(--brand-primary);
            text-decoration: none;
            font-weight: 600;
        }

        .navigator {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--bg-surface);
            border: 1px solid var(--border-default);
            border-radius: 50px;
            display: flex;
            padding: 8px 15px;
            gap: 10px;
            z-index: 2000;
            box-shadow: 0 10px 30px rgba(0,0,0,0.8);
        }

        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: var(--text-secondary);
            font-size: 10px;
            gap: 4px;
            padding: 8px 12px;
            border-radius: 20px;
            transition: all 0.3s ease;
        }

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

        .nav-item:hover {
            color: var(--brand-primary);
            background-color: var(--bg-surface-light);
        }

        footer {
            background-color: var(--bg-surface);
            border-top: 1px solid var(--border-default);
            padding: 40px 20px 100px;
            text-align: center;
            margin-top: 60px;
        }

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

        .footer-contact a {
            color: var(--text-primary);
            text-decoration: none;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .footer-contact a:hover {
            color: var(--brand-primary);
        }

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

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 13px;
            padding: 5px;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--brand-primary);
        }

        .footer-copyright {
            font-size: 13px;
            color: var(--text-muted);
            border-top: 1px solid var(--border-subtle);
            padding-top: 20px;
        }

        @media (max-width: 768px) {
            .payment-licenses {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
            .game-grid {
                gap: 10px;
            }
            .intro-card h1 {
                font-size: 24px;
            }
        }