:root {
            --primary: #D4AF37;
            --primary-hover: #F9D71C;
            --secondary: #8B0000;
            --accent: #00C853;
            --bg-default: #0A0A0A;
            --bg-paper: #121212;
            --bg-elevated: #1E1E1E;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-hint: #808080;
            --text-disabled: #4D4D4D;
            --text-inverse: #000000;
            --success: #22C55E;
            --error: #EF4444;
            --warning: #F59E0B;
            --info: #3B82F6;
            --border-subtle: #262626;
            --border-default: #333333;
            --border-active: #D4AF37;
            --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-heading: 'Montserrat', 'Inter', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        body {
            background-color: var(--bg-default);
            color: var(--text-primary);
            font-family: var(--font-primary);
            font-size: 16px;
            line-height: 1.5;
            overflow-x: hidden;
        }

        h1, h2, h3 {
            font-family: var(--font-heading);
            font-weight: 700;
            color: var(--text-primary);
        }

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

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 16px;
        }

        header {
            background-color: var(--bg-paper);
            border-bottom: 1px solid var(--border-subtle);
            height: 60px;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            align-items: center;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .logo-box {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo-box img {
            width: 25px;
            height: 25px;
            border-radius: 4px;
        }

        .logo-box strong {
            font-size: 16px;
            font-weight: 400;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

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

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

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

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

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

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

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

        .jackpot-section {
            background: linear-gradient(135deg, var(--secondary), #4a0000);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin-bottom: 24px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.5);
            border: 1px solid var(--primary);
        }

        .jackpot-label {
            color: var(--primary);
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 10px;
            letter-spacing: 2px;
        }

        .jackpot-amount {
            font-size: 32px;
            font-weight: 900;
            color: #fff;
            font-family: 'JetBrains Mono', monospace;
            text-shadow: 0 0 10px var(--primary);
        }

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

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

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

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

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

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

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

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

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

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

        .game-info {
            padding: 10px;
        }

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

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

        .trust-section {
            background: var(--bg-elevated);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 30px;
            text-align: center;
        }

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

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

        .guidelines {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 30px;
        }

        .guide-item {
            background: var(--bg-paper);
            padding: 16px;
            border-radius: 12px;
            border-left: 4px solid var(--primary);
        }

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

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

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

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

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

        .winning-record {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
        }

        .winning-record span {
            color: var(--success);
            font-weight: 700;
        }

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

        .provider-tag {
            background: var(--bg-paper);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            border: 1px solid var(--border-default);
            color: var(--text-secondary);
        }

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

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

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

        .user-info {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .user-info i {
            background: var(--bg-elevated);
            padding: 8px;
            border-radius: 50%;
            color: var(--primary);
        }

        .stars {
            color: var(--warning);
            font-size: 12px;
        }

        .review-date {
            font-size: 11px;
            color: var(--text-hint);
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 30px;
        }

        .faq-item {
            background: var(--bg-paper);
            border-radius: 12px;
            padding: 16px;
        }

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

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

        .responsible-gaming {
            background: var(--bg-elevated);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            margin-bottom: 80px;
        }

        .age-badge {
            display: inline-block;
            width: 40px;
            height: 40px;
            line-height: 38px;
            border: 2px solid var(--error);
            border-radius: 50%;
            color: var(--error);
            font-weight: 900;
            margin-bottom: 10px;
        }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--bg-paper);
            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: 11px;
            color: var(--text-secondary);
        }

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

        .nav-item.active {
            color: var(--primary);
        }

        footer {
            background: #000;
            padding: 40px 16px 120px;
            border-top: 1px solid var(--border-subtle);
        }

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

        .footer-social a {
            font-size: 14px;
            color: var(--primary);
        }

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

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

        .copyright {
            text-align: center;
            font-size: 12px;
            color: var(--text-disabled);
        }

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