:root {
            --primary: #FFD700;
            --primary-hover: #FFC107;
            --secondary: #C0C0C0;
            --accent: #E60012;
            --bg-main: #0B0B0B;
            --bg-surface: #1A1A1A;
            --bg-surface-light: #2A2A2A;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #757575;
            --text-inverse: #000000;
            --success: #00C853;
            --warning: #FFAB00;
            --error: #FF5252;
            --info: #2196F3;
            --border-default: #333333;
            --border-strong: #4D4D4D;
            --border-brand: #FFD700;
            --font-heading: 'Montserrat', 'Segoe UI', Roboto, sans-serif;
            --font-body: 'Open Sans', 'Roboto', Arial, 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;
            overflow-x: hidden;
        }
        header {
            background-color: var(--bg-surface);
            border-bottom: 2px solid var(--border-brand);
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        header .brand {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: var(--text-primary);
        }
        header .brand img {
            width: 25px;
            height: 25px;
            object-fit: contain;
        }
        header .brand strong {
            font-size: 16px;
            font-weight: normal;
            font-family: var(--font-heading);
        }
        header .auth-buttons {
            display: flex;
            gap: 10px;
        }
        .btn {
            padding: 8px 16px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            border: none;
            transition: 0.3s;
            font-family: var(--font-heading);
            text-decoration: none;
            font-size: 14px;
        }
        .btn-login {
            background-color: transparent;
            color: var(--primary);
            border: 1px solid var(--primary);
        }
        .btn-login:hover { background-color: var(--primary); color: var(--text-inverse); }
        .btn-register {
            background-color: var(--primary);
            color: var(--text-inverse);
        }
        .btn-register:hover { background-color: var(--primary-hover); }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        .banner-container {
            width: 100%;
            aspect-ratio: 2 / 1;
            overflow: hidden;
            border-radius: 15px;
            cursor: pointer;
            margin-bottom: 20px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .banner-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .jackpot-section {
            background: linear-gradient(45deg, #1a1a1a, #333);
            border: 2px solid var(--primary);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
        }
        .jackpot-title {
            font-family: var(--font-heading);
            color: var(--primary);
            font-size: 20px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }
        .jackpot-amount {
            font-family: 'Roboto Mono', monospace;
            font-size: 36px;
            font-weight: bold;
            color: #fff;
            text-shadow: 0 0 10px var(--primary);
        }
        .intro-card {
            background-color: var(--bg-surface);
            padding: 30px;
            border-radius: 15px;
            border-left: 5px solid var(--primary);
            margin-bottom: 30px;
        }
        .intro-card h1 {
            font-family: var(--font-heading);
            font-size: 28px;
            color: var(--primary);
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .intro-card p {
            color: var(--text-secondary);
            font-size: 16px;
        }
        h2 {
            font-family: var(--font-heading);
            color: var(--primary);
            text-align: center;
            margin: 40px 0 20px;
            font-size: 24px;
            text-transform: uppercase;
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }
        .game-card {
            background-color: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            transition: transform 0.3s, border 0.3s;
            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;
        }
        .game-card h3 {
            padding: 12px;
            font-size: 16px;
            color: var(--text-primary);
            text-align: center;
            font-family: var(--font-heading);
        }
        .payment-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 15px;
            background-color: var(--bg-surface);
            padding: 20px;
            border-radius: 15px;
            text-align: center;
        }
        .payment-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: var(--text-secondary);
            font-size: 14px;
        }
        .payment-item i {
            font-size: 24px;
            color: var(--primary);
        }
        .guides-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        .guide-card {
            background-color: var(--bg-surface-light);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border-default);
        }
        .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-color: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 30px;
        }
        .lottery-table th, .lottery-table td {
            padding: 12px;
            text-align: center;
            border-bottom: 1px solid var(--border-default);
        }
        .lottery-table th {
            background-color: var(--bg-surface-light);
            color: var(--primary);
        }
        .lottery-table td { color: var(--text-secondary); }
        .lottery-table .win-amount { color: var(--success); font-weight: bold; }
        .providers-wall {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-bottom: 30px;
        }
        .provider-box {
            background: linear-gradient(135deg, var(--bg-surface), var(--bg-surface-light));
            padding: 15px;
            text-align: center;
            border: 1px solid var(--border-strong);
            border-radius: 8px;
            font-weight: bold;
            color: var(--primary);
        }
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        .review-card {
            background-color: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border-default);
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
        }
        .review-header i {
            font-size: 30px;
            color: var(--primary);
        }
        .review-name { font-weight: bold; color: var(--text-primary); }
        .review-stars { color: var(--warning); font-size: 14px; margin-bottom: 10px; }
        .review-text { color: var(--text-secondary); font-size: 14px; margin-bottom: 10px; }
        .review-date { color: var(--text-muted); font-size: 12px; }
        .faq-section {
            display: grid;
            gap: 15px;
            margin-bottom: 30px;
        }
        .faq-item {
            background-color: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border-default);
        }
        .faq-item h3 {
            color: var(--primary);
            font-size: 18px;
            margin-bottom: 10px;
        }
        .faq-item p { color: var(--text-secondary); font-size: 15px; }
        .security-footer {
            background-color: var(--bg-surface);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--border-brand);
        }
        .security-icons {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        .security-icon { color: var(--primary); font-size: 18px; display: flex; align-items: center; gap: 8px; }
        .security-text { color: var(--text-secondary); font-size: 14px; margin-bottom: 15px; }
        .security-text a { color: var(--primary); text-decoration: underline; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 2px solid var(--border-brand);
            z-index: 2000;
        }
        .nav-item {
            text-decoration: none;
            color: var(--text-secondary);
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 12px;
            gap: 5px;
        }
        .nav-item i { font-size: 20px; }
        .nav-item:hover { color: var(--primary); }
        footer {
            background-color: var(--bg-surface);
            padding: 40px 20px 100px;
            text-align: center;
            border-top: 1px solid var(--border-default);
        }
        .footer-contact {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        .footer-contact a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 14px;
        }
        .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-secondary);
            text-decoration: none;
            font-size: 14px;
        }
        .footer-links a:hover { color: var(--primary); }
        .copyright {
            color: var(--text-muted);
            font-size: 13px;
            border-top: 1px solid var(--border-default);
            padding-top: 20px;
        }
        @media (max-width: 768px) {
            .footer-links { grid-template-columns: repeat(2, 1fr); }
            .intro-card h1 { font-size: 22px; }
        }