:root {
            --bg-primary: #0a0a0b;
            --bg-secondary: #16171a;
            --bg-surface: #1f2024;
            --bg-overlay: rgba(0, 0, 0, 0.9);
            --brand-primary: #d4af37;
            --brand-variant: #b8860b;
            --brand-accent: #ffd700;
            --brand-luxury: #c5a059;
            --text-primary: #ffffff;
            --text-secondary: #b0b3b8;
            --text-muted: #65676b;
            --border-default: #2f3336;
            --win-color: #4caf50;
            --font-headings: 'Montserrat', sans-serif;
            --font-body: 'Inter', sans-serif;
            --font-numbers: 'Oswald', sans-serif;
        }

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

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

        header {
            background-color: var(--bg-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;
            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: 20px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: transform 0.2s;
        }

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

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

        .btn:active {
            transform: scale(0.95);
        }

        main {
            padding-bottom: 80px;
        }

        .banner-container {
            width: 100%;
            aspect-ratio: 2/1;
            cursor: pointer;
            overflow: hidden;
        }

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

        .jackpot-section {
            background: linear-gradient(135deg, #1f2024 0%, #0a0a0b 100%);
            margin: 20px 15px;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--brand-primary);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }

        .jackpot-label {
            color: var(--brand-accent);
            font-family: var(--font-headings);
            font-weight: 700;
            font-size: 14px;
            text-transform: uppercase;
            margin-bottom: 10px;
            display: block;
        }

        .jackpot-amount {
            font-family: var(--font-numbers);
            font-size: 36px;
            color: var(--text-primary);
            font-weight: 900;
            text-shadow: 0 0 10px var(--brand-primary);
        }

        .hero-card {
            margin: 20px 15px;
            padding: 25px;
            background: var(--bg-surface);
            border-radius: 15px;
            border-left: 4px solid var(--brand-primary);
        }

        .hero-card h1 {
            font-family: var(--font-headings);
            font-size: 20px;
            color: var(--brand-primary);
            margin-bottom: 12px;
        }

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

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

        .section-title h2 {
            font-family: var(--font-headings);
            font-size: 18px;
            color: var(--text-primary);
        }

        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 0 15px;
        }

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

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

        .game-image {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
        }

        .game-info {
            padding: 10px;
        }

        .game-info h3 {
            font-size: 13px;
            color: var(--text-primary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-bottom: 4px;
        }

        .game-provider {
            font-size: 11px;
            color: var(--brand-luxury);
            font-weight: 600;
        }

        .payment-section {
            background: var(--bg-secondary);
            margin: 30px 15px;
            padding: 20px;
            border-radius: 15px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            opacity: 0.8;
        }

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

        .guidelines-grid {
            padding: 0 15px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .guideline-item {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
        }

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

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

        .winners-marquee {
            background: var(--bg-surface);
            padding: 15px 0;
            margin: 30px 0;
            overflow: hidden;
            white-space: nowrap;
        }

        .marquee-content {
            display: inline-block;
            animation: marquee 40s linear infinite;
        }

        .winner-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0, 0, 0, 0.3);
            padding: 8px 15px;
            margin: 0 10px;
            border-radius: 50px;
            border: 1px solid var(--border-default);
        }

        .winner-name { color: var(--brand-accent); font-weight: bold; }
        .winner-amount { color: var(--win-color); font-weight: bold; }

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

        .providers-wall {
            padding: 20px 15px;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
        }

        .provider-tag {
            background: var(--bg-surface);
            padding: 8px 15px;
            border-radius: 5px;
            font-size: 12px;
            color: var(--text-secondary);
            border: 1px solid var(--border-default);
        }

        .reviews-section {
            padding: 0 15px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

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

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

        .review-user {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--brand-luxury);
        }

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

        .faq-section {
            padding: 0 15px;
        }

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

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

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

        .responsible-gaming {
            background: #1a1a1c;
            margin: 30px 15px;
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            border: 1px dashed var(--text-muted);
        }

        .responsible-gaming h2 {
            font-size: 18px;
            color: var(--text-primary);
            margin-bottom: 15px;
        }

        .age-badge {
            display: inline-block;
            width: 40px;
            height: 40px;
            line-height: 40px;
            border: 2px solid #ff5252;
            color: #ff5252;
            border-radius: 50%;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--bg-secondary);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            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;
            gap: 5px;
            font-size: 11px;
        }

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

        footer {
            background: #050505;
            padding: 40px 15px 120px;
            border-top: 1px solid var(--border-default);
        }

        .footer-contact {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
        }

        .footer-contact a {
            color: var(--brand-primary);
            text-decoration: none;
            font-size: 14px;
        }

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

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

        .footer-copy {
            text-align: center;
            color: var(--text-muted);
            font-size: 11px;
        }