:root {
            --primary: #D4AF37;
            --primary-hover: #F1C40F;
            --secondary: #059669;
            --secondary-hover: #10B981;
            --accent: #FF4500;
            --bg-main: #0D0D0D;
            --bg-surface: #1A1A1A;
            --bg-elevated: #262626;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #737373;
            --border-default: #333333;
            --border-gold: #D4AF37;
            --font-headings: 'Montserrat', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

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

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

        h1, h2, h3 {
            font-family: var(--font-headings);
            font-weight: 700;
            line-height: 1.25;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: 0.3s ease;
        }

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

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

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

        .logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
        }

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

        .logo-area strong {
            font-size: 16px;
            font-weight: 400;
            color: var(--primary);
        }

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

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

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

        .btn-login:hover {
            background: rgba(212, 175, 55, 0.1);
        }

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

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

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

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

        .jackpot-section {
            background: linear-gradient(135deg, #1A1A1A 0%, #0D0D0D 100%);
            border: 2px solid var(--border-gold);
            border-radius: 12px;
            padding: 24px;
            text-align: center;
            margin-bottom: 30px;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }

        .jackpot-label {
            color: var(--primary);
            font-family: var(--font-headings);
            font-weight: 900;
            font-size: 1.25rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }

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

        .intro-card {
            background: var(--bg-surface);
            padding: 30px;
            border-radius: 16px;
            margin-bottom: 40px;
            border-left: 4px solid var(--primary);
        }

        .intro-card h1 {
            font-size: 2rem;
            margin-bottom: 15px;
            color: var(--primary);
        }

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

        .section-title {
            font-size: 1.5rem;
            margin-bottom: 20px;
            padding-left: 12px;
            border-left: 4px solid var(--secondary);
        }

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

        .game-card {
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

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

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

        .game-card h3 {
            padding: 10px;
            font-size: 0.875rem;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .payments-licences {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            gap: 12px;
            margin-bottom: 40px;
        }

        .payment-item {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            border: 1px solid var(--border-default);
        }

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

        .payment-item span {
            font-size: 0.75rem;
            font-weight: 600;
        }

        .guides-section {
            display: grid;
            gap: 20px;
            margin-bottom: 40px;
        }

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

        .guide-item h2 {
            font-size: 1.25rem;
            margin-bottom: 10px;
            color: var(--primary);
        }

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

        .marquee-container {
            background: var(--bg-surface);
            padding: 20px 0;
            overflow: hidden;
            margin-bottom: 40px;
            position: relative;
        }

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

        .winner-item {
            display: flex;
            align-items: center;
            gap: 10px;
            background: var(--bg-elevated);
            padding: 10px 20px;
            border-radius: 50px;
            border: 1px solid var(--border-default);
        }

        .winner-name {
            color: var(--primary);
            font-weight: bold;
        }

        .winner-amount {
            color: var(--semantic-success, #00C853);
            font-weight: bold;
        }

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

        .providers-wall {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 40px;
        }

        .provider-block {
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1rem;
        }

        .provider-block:nth-child(odd) { background: var(--primary); color: #000; }
        .provider-block:nth-child(even) { background: var(--bg-elevated); color: var(--primary); border: 1px solid var(--primary); }

        .reviews-section {
            display: grid;
            gap: 20px;
            margin-bottom: 40px;
        }

        .review-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            border-top: 2px solid var(--secondary);
        }

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

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

        .review-info h3 {
            font-size: 1rem;
        }

        .stars {
            color: #FFCC00;
            font-size: 12px;
        }

        .review-content {
            font-size: 0.875rem;
            color: var(--text-secondary);
            margin-bottom: 8px;
        }

        .review-date {
            font-size: 0.75rem;
            color: var(--text-muted);
        }

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

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

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

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

        .security-section {
            background: var(--bg-surface);
            padding: 30px;
            border-radius: 16px;
            text-align: center;
            margin-bottom: 80px;
        }

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

        .security-icons i {
            font-size: 40px;
            color: var(--secondary);
        }

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

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 65px;
            background: var(--bg-elevated);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
        }

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

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

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

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

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

        .footer-contact a {
            color: var(--primary);
            font-weight: 600;
        }

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

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

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

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