@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:wght@700;800&family=Roboto+Mono&display=swap');

        :root {
            --brand-primary: #D4AF37;
            --brand-primary-light: #F9E076;
            --brand-primary-dark: #996515;
            --brand-secondary: #DC143C;
            --brand-accent: #00C4FF;
            --bg-main: #0B0E11;
            --bg-surface: #161A1E;
            --bg-elevated: #21262C;
            --text-primary: #FFFFFF;
            --text-secondary: #B1B5C3;
            --border-subtle: #2D3748;
            --border-active: #D4AF37;
        }

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

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

        h1, h2, h3 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

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

        .header-left {
            display: flex;
            align-items: center;
            gap: 8px;
        }

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

        .header-left strong {
            font-size: 16px;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

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

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

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

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

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

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

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

        .jackpot-container {
            background: linear-gradient(135deg, var(--bg-surface), var(--bg-elevated));
            border: 2px solid var(--brand-primary);
            border-radius: 16px;
            padding: 20px;
            text-align: center;
            margin-bottom: 24px;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }

        .jackpot-label {
            color: var(--brand-primary);
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 14px;
            margin-bottom: 8px;
            text-transform: uppercase;
        }

        .jackpot-amount {
            font-family: 'Roboto Mono', monospace;
            font-size: 32px;
            font-weight: 700;
            color: var(--brand-primary-light);
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 4px;
        }

        .intro-card {
            background-color: var(--bg-surface);
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 32px;
            border: 1px solid var(--border-subtle);
        }

        .intro-card h1 {
            font-size: 24px;
            margin-bottom: 12px;
            color: var(--brand-primary);
        }

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

        .section-title {
            font-size: 20px;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .section-title::before {
            content: '';
            width: 4px;
            height: 20px;
            background-color: var(--brand-primary);
            border-radius: 2px;
        }

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

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

        .game-card:hover {
            transform: translateY(-4px);
        }

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

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

        .game-info {
            padding: 10px;
        }

        .game-info h3 {
            font-size: 14px;
            margin-bottom: 4px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

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

        .trust-section {
            background-color: var(--bg-elevated);
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 32px;
            text-align: center;
        }

        .payment-icons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
            margin-top: 16px;
        }

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

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

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

        .guideline-card h2 {
            font-size: 18px;
            margin-bottom: 10px;
        }

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

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

        .marquee-content {
            display: flex;
            animation: marquee 40s linear infinite;
            white-space: nowrap;
        }

        .winner-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 0 24px;
            border-right: 1px solid var(--border-subtle);
        }

        .winner-name {
            color: var(--brand-primary-light);
            font-weight: 600;
        }

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

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

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

        .provider-tag {
            background-color: var(--bg-elevated);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 13px;
            color: var(--text-secondary);
            border: 1px solid var(--border-subtle);
        }

        .reviews-container {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 32px;
        }

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

        .review-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }

        .review-user {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .review-stars {
            color: #FFCC00;
        }

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

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

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

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

        .security-footer {
            background-color: var(--bg-elevated);
            padding: 24px;
            border-radius: 16px;
            text-align: center;
            margin-bottom: 40px;
        }

        .security-logos {
            display: flex;
            justify-content: center;
            gap: 20px;
            font-size: 30px;
            margin-bottom: 16px;
            color: var(--text-secondary);
        }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-subtle);
            z-index: 1000;
        }

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

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

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

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

        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            text-align: center;
            margin-bottom: 24px;
        }

        .footer-links a {
            font-size: 14px;
            color: var(--text-secondary);
        }

        .footer-copyright {
            text-align: center;
            font-size: 12px;
            color: var(--text-disabled);
            border-top: 1px solid var(--border-subtle);
            padding-top: 20px;
        }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .guidelines-grid { grid-template-columns: repeat(2, 1fr); }
            .reviews-container { display: grid; grid-template-columns: repeat(2, 1fr); }
        }