:root {
            --primary: #FFD700;
            --primary-variant: #C5A000;
            --secondary: #B22222;
            --accent: #FF4500;
            --bg-main: #0F0F0F;
            --bg-surface: #1A1A1A;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --grad-start: #1A1A1A;
            --grad-end: #000000;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #666666;
            --text-on-brand: #000000;
            --success: #00C853;
            --warning: #FFB300;
            --error: #FF5252;
            --info: #2196F3;
            --border-light: #333333;
            --border-medium: #444444;
            --border-strong: #FFD700;
            --font-heading: 'Montserrat', sans-serif;
            --font-body: 'Roboto', sans-serif;
            --font-accent: 'Playfair Display', serif;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { 
            background: var(--bg-main); 
            color: var(--text-primary); 
            font-family: var(--font-body); 
            line-height: 1.5; 
            overflow-x: hidden;
            background: linear-gradient(to bottom, var(--grad-start), var(--grad-end));
        }

        header {
            background: var(--bg-surface);
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--border-strong);
            box-shadow: 0 4px 10px rgba(0,0,0,0.5);
        }

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

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

        header .logo-area strong {
            font-size: 16px;
            font-weight: normal;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

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

        .btn {
            padding: 8px 18px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            font-size: 14px;
            transition: 0.3s;
            border: none;
            text-decoration: none;
            text-align: center;
        }

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

        .btn-login:hover {
            background: var(--primary);
            color: var(--text-on-brand);
        }

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

        .btn-register:hover {
            background: var(--primary-variant);
            box-shadow: 0 0 15px var(--primary);
        }

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

        .hero-banner {
            width: 100%;
            aspect-ratio: 2/1;
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
            margin-bottom: 20px;
            border: 2px solid var(--border-medium);
            transition: transform 0.3s;
        }

        .hero-banner:hover { transform: scale(1.01); }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-container {
            background: linear-gradient(45deg, var(--secondary), #800000);
            padding: 20px;
            text-align: center;
            border-radius: 15px;
            margin-bottom: 30px;
            border: 2px solid var(--primary);
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
        }

        .jackpot-title {
            font-family: var(--font-heading);
            font-size: 18px;
            color: var(--primary);
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .jackpot-amount {
            font-family: var(--font-accent);
            font-size: 40px;
            font-weight: bold;
            color: #fff;
            text-shadow: 0 0 10px var(--primary);
        }

        .intro-card {
            background: var(--bg-surface);
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            margin-bottom: 40px;
            border-left: 5px solid var(--primary);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

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

        .intro-card p {
            color: var(--text-secondary);
            font-size: 16px;
            max-width: 800px;
            margin: 0 auto;
        }

        h2 {
            font-family: var(--font-heading);
            font-size: 24px;
            text-align: center;
            color: var(--primary);
            margin: 40px 0 20px;
            text-transform: uppercase;
            position: relative;
        }

        h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: var(--primary);
            margin: 10px auto;
        }

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

        .game-card {
            background: var(--bg-surface);
            border-radius: 15px;
            overflow: hidden;
            text-decoration: none;
            transition: 0.3s;
            border: 1px solid var(--border-light);
            display: flex;
            flex-direction: column;
        }

        .game-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
        }

        .game-card img {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
            background: #222;
        }

        .game-card h3 {
            padding: 15px;
            font-size: 16px;
            color: var(--text-primary);
            text-align: center;
            font-family: var(--font-body);
        }

        .payment-methods {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            background: var(--bg-surface);
            padding: 25px;
            border-radius: 15px;
            margin-bottom: 40px;
        }

        .payment-item {
            display: flex;
            align-items: center;
            gap: 8px;
            background: #252525;
            padding: 8px 15px;
            border-radius: 50px;
            font-size: 14px;
            color: var(--text-secondary);
            border: 1px solid var(--border-light);
        }

        .payment-item i { color: var(--primary); }

        .guides-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .guide-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 15px;
            border: 1px solid var(--border-light);
        }

        .guide-card h3 {
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 18px;
        }

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

        .lottery-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--bg-surface);
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 40px;
        }

        .lottery-table th, .lottery-table td {
            padding: 12px;
            text-align: center;
            border-bottom: 1px solid var(--border-light);
        }

        .lottery-table th {
            background: var(--secondary);
            color: var(--primary);
            font-family: var(--font-heading);
        }

        .lottery-table td { color: var(--text-secondary); font-size: 14px; }
        .win-amount { color: var(--success); font-weight: bold; }

        .provider-wall {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 40px;
        }

        .provider-block {
            padding: 20px;
            text-align: center;
            border-radius: 10px;
            font-weight: bold;
            font-family: var(--font-heading);
            text-transform: uppercase;
            transition: 0.3s;
            cursor: default;
        }

        .provider-block:nth-child(odd) { background: var(--secondary); color: white; }
        .provider-block:nth-child(even) { background: var(--primary); color: var(--text-on-brand); }
        .provider-block:hover { filter: brightness(1.2); }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .review-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 15px;
            border: 1px solid var(--border-light);
        }

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

        .review-header i { font-size: 30px; color: var(--primary); }
        .review-user { font-weight: bold; color: var(--text-primary); }
        .review-stars { color: var(--warning); font-size: 12px; margin-left: auto; }
        .review-text { color: var(--text-secondary); font-size: 14px; margin-bottom: 10px; }
        .review-date { font-size: 12px; color: var(--text-muted); }

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

        .faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid var(--border-light);
            padding-bottom: 15px;
        }

        .faq-item h3 {
            color: var(--primary);
            font-size: 17px;
            margin-bottom: 10px;
            cursor: pointer;
        }

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

        .security-footer {
            text-align: center;
            padding: 30px;
            background: var(--bg-surface);
            border-radius: 15px;
            margin-bottom: 40px;
            border: 1px dashed var(--primary);
        }

        .security-icons {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
            font-size: 24px;
            color: var(--primary);
        }

        .security-text {
            color: var(--text-secondary);
            font-size: 14px;
            max-width: 700px;
            margin: 0 auto 15px;
        }

        .security-link {
            color: var(--accent);
            text-decoration: none;
            font-weight: bold;
            font-size: 13px;
        }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 2px solid var(--primary);
            z-index: 2000;
            box-shadow: 0 -5px 15px rgba(0,0,0,0.5);
        }

        .nav-item {
            text-decoration: none;
            color: var(--text-secondary);
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 11px;
            gap: 5px;
            transition: 0.3s;
        }

        .nav-item i { font-size: 20px; }
        .nav-item:hover { color: var(--primary); }

        footer {
            background: #050505;
            padding: 40px 20px;
            text-align: center;
            border-top: 1px solid var(--border-light);
            margin-bottom: 70px;
        }

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

        .footer-contact a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 14px;
            transition: 0.3s;
        }

        .footer-contact a:hover { color: var(--primary); }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            max-width: 800px;
            margin: 0 auto 30px;
            text-align: left;
        }

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

        .footer-links a:hover { color: var(--primary); }

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

        @media (max-width: 768px) {
            .game-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-links { grid-template-columns: repeat(3, 1fr); }
            .intro-card h1 { font-size: 22px; }
            .jackpot-amount { font-size: 30px; }
        }