:root {
            --primary-gold: #D4AF37;
            --primary-gold-light: #F9E076;
            --primary-gold-dark: #996515;
            --secondary-navy: #0A192F;
            --accent-royal-blue: #1E40AF;
            --bg-base: #050505;
            --bg-surface: #121212;
            --bg-elevated: #1E1E1E;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-muted: #6B7280;
            --win-notif: #FFD700;
            --border-subtle: #2D2D2D;
            --font-main: 'Montserrat', 'Inter', sans-serif;
            --font-heading: 'Oswald', 'Montserrat', sans-serif;
        }

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

        header {
            background-color: var(--secondary-navy);
            border-bottom: 2px solid var(--primary-gold);
            padding: 10px 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .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;
            color: var(--primary-gold-light);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

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

        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-family: var(--font-heading);
            transition: transform 0.2s;
        }

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

        .btn-register {
            background: linear-gradient(to bottom, var(--primary-gold-light), var(--primary-gold-dark));
            color: var(--bg-base);
        }

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

        .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: radial-gradient(circle, var(--accent-royal-blue), var(--bg-base));
            padding: 20px;
            text-align: center;
            border-bottom: 1px solid var(--border-subtle);
        }

        .jackpot-amount {
            font-family: var(--font-heading);
            font-size: 40px;
            color: var(--win-notif);
            text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
            font-weight: 800;
        }

        .intro-card {
            padding: 25px;
            margin: 15px;
            background: var(--bg-surface);
            border-radius: 12px;
            border: 1px solid var(--border-subtle);
        }

        h1 {
            font-family: var(--font-heading);
            font-size: 24px;
            color: var(--primary-gold);
            margin-bottom: 10px;
        }

        h2 {
            font-family: var(--font-heading);
            font-size: 22px;
            color: var(--primary-gold-light);
            margin: 20px 15px 10px;
            border-left: 4px solid var(--primary-gold);
            padding-left: 10px;
        }

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

        .game-card {
            background: var(--bg-elevated);
            border-radius: 10px;
            overflow: hidden;
            text-decoration: none;
            border: 1px solid var(--border-subtle);
            transition: 0.3s;
        }

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

        .game-card h3 {
            font-size: 14px;
            color: var(--text-primary);
            padding: 8px;
            margin: 0;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .payment-methods {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            padding: 15px;
            background: var(--bg-surface);
        }

        .payment-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 10px;
            color: var(--text-secondary);
        }

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

        .guide-section {
            padding: 15px;
            display: grid;
            gap: 15px;
        }

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

        .lottery-list {
            padding: 15px;
            background: var(--bg-elevated);
            margin: 15px;
            border-radius: 10px;
        }

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

        .lottery-item .user { color: var(--primary-gold-light); }
        .lottery-item .amount { color: var(--win-notif); font-weight: bold; }

        .providers-wall {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            padding: 15px;
        }

        .provider-box {
            background: var(--secondary-navy);
            padding: 15px;
            text-align: center;
            border-radius: 6px;
            color: var(--primary-gold);
            font-weight: bold;
            font-family: var(--font-heading);
        }

        .reviews-section {
            padding: 15px;
        }

        .review-card {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
            border: 1px solid var(--border-subtle);
        }

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

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

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

        .faq-section {
            padding: 15px;
        }

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

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

        .security-section {
            background: #000;
            padding: 25px 15px;
            text-align: center;
            border-top: 1px solid var(--primary-gold-dark);
        }

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

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--primary-gold-dark);
            z-index: 1001;
        }

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

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

        footer {
            background: var(--bg-base);
            padding: 30px 15px 100px;
            text-align: center;
            border-top: 1px solid var(--border-subtle);
        }

        .footer-contacts {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 25px;
            flex-wrap: wrap;
        }

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

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

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

        .copyright {
            font-size: 12px;
            color: var(--text-muted);
            border-top: 1px solid var(--border-subtle);
            padding-top: 15px;
        }