:root {
            --primary: #D4AF37;
            --primary-hover: #F1C40F;
            --secondary: #059669;
            --secondary-hover: #10B981;
            --accent: #FF4500;
            --bg-main: #0D0D0D;
            --bg-surface: #1A1A1A;
            --bg-elevated: #262626;
            --overlay: rgba(0, 0, 0, 0.85);
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #737373;
            --brand-contrast: #000000;
            --success: #00C853;
            --error: #FF3B30;
            --border-default: #333333;
            --border-gold: #D4AF37;
            --font-headings: 'Montserrat', sans-serif;
            --font-body: 'Inter', sans-serif;
            --font-mono: 'JetBrains Mono', monospace;
        }

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

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

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

        .header-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: var(--text-primary);
        }

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

        .header-logo strong {
            font-size: 16px;
            font-weight: 400;
            font-family: var(--font-headings);
        }

        .header-actions {
            display: flex;
            gap: 10px;
        }

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

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

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

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

        main {
            max-width: 1000px;
            margin: 0 auto;
            padding: 1rem;
        }

        .banner-container {
            width: 100%;
            margin-bottom: 1.5rem;
            cursor: pointer;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        .banner-container img {
            width: 100%;
            height: auto;
            display: block;
            aspect-ratio: 2 / 1;
            object-fit: cover;
        }

        .jackpot-section {
            background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
            border: 2px solid var(--border-gold);
            border-radius: 15px;
            padding: 1.5rem;
            text-align: center;
            margin-bottom: 1.5rem;
            position: relative;
            overflow: hidden;
        }

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

        .jackpot-amount {
            font-family: var(--font-mono);
            font-size: 2.5rem;
            color: #FFFFFF;
            text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
            font-weight: 900;
        }

        .intro-card {
            background-color: var(--bg-surface);
            padding: 2rem;
            border-radius: 12px;
            margin-bottom: 2rem;
            border-left: 4px solid var(--primary);
        }

        .intro-card h1 {
            font-family: var(--font-headings);
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: var(--font-headings);
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

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

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

        .game-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
        }

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

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

        .payments-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-bottom: 2rem;
        }

        .payment-item {
            background-color: var(--bg-elevated);
            padding: 15px 5px;
            border-radius: 8px;
            text-align: center;
            font-size: 0.75rem;
            color: var(--text-secondary);
        }

        .payment-item i {
            display: block;
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .guides-container {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 2rem;
        }

        .guide-box {
            background-color: var(--bg-surface);
            padding: 1.5rem;
            border-radius: 12px;
        }

        .guide-box h2 {
            font-size: 1.25rem;
            color: var(--primary);
            margin-bottom: 0.75rem;
        }

        .lottery-ticker {
            background-color: var(--bg-surface);
            padding: 10px;
            border-radius: 8px;
            overflow: hidden;
            height: 150px;
            position: relative;
            margin-bottom: 2rem;
            border: 1px solid var(--border-default);
        }

        .lottery-scroll {
            animation: scrollUp 20s linear infinite;
        }

        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }

        .lottery-item {
            padding: 8px;
            border-bottom: 1px solid var(--border-default);
            display: flex;
            justify-content: space-between;
            font-size: 0.8rem;
        }

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

        .providers-wall {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 2rem;
        }

        .provider-block {
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            font-weight: bold;
            font-family: var(--font-headings);
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            margin-bottom: 2rem;
        }

        .review-card {
            background-color: var(--bg-elevated);
            padding: 1.5rem;
            border-radius: 12px;
        }

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

        .review-stars { color: #FFCC00; font-size: 0.8rem; }

        .faq-section {
            background-color: var(--bg-surface);
            padding: 1.5rem;
            border-radius: 12px;
            margin-bottom: 2rem;
        }

        .faq-item {
            margin-bottom: 1.5rem;
            border-bottom: 1px solid var(--border-default);
            padding-bottom: 1rem;
        }

        .faq-item h3 {
            color: var(--primary);
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .security-section {
            text-align: center;
            padding: 2rem;
            background-color: var(--bg-elevated);
            border-radius: 12px;
            margin-bottom: 2rem;
        }

        .security-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 1rem;
            font-size: 2rem;
            color: var(--text-muted);
        }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 70px;
            background-color: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            align-items: center;
            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;
            font-size: 0.7rem;
        }

        .nav-item i {
            font-size: 1.2rem;
            margin-bottom: 4px;
        }

        .nav-item:nth-child(3) {
            background-color: var(--primary);
            color: var(--brand-contrast);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            justify-content: center;
            transform: translateY(-20px);
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
        }

        footer {
            background-color: var(--bg-surface);
            padding: 3rem 1rem 6rem;
            text-align: center;
        }

        .footer-contacts {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            max-width: 600px;
            margin: 0 auto 2rem;
            font-size: 0.85rem;
        }

        .footer-links a, .footer-contacts a {
            color: var(--text-secondary);
            text-decoration: none;
        }

        .footer-copyright {
            font-size: 0.75rem;
            color: var(--text-muted);
            border-top: 1px solid var(--border-default);
            padding-top: 1.5rem;
        }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .reviews-grid { grid-template-columns: 1fr 1fr; }
            .payments-grid { grid-template-columns: repeat(8, 1fr); }
        }