:root {
            --primary: #FFD700;
            --primary-dark: #B8860B;
            --secondary: #C0C0C0;
            --accent: #FF0000;
            --bg-main: #0B0B0B;
            --bg-surface: #1A1A1A;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #666666;
            --text-inverse: #000000;
            --success: #00C853;
            --warning: #FFAB00;
            --error: #FF5252;
            --info: #2196F3;
            --border-subtle: #333333;
            --border-medium: #444444;
            --border-strong: #FFD700;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Roboto', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

        header {
            background-color: var(--bg-surface);
            border-bottom: 2px solid var(--border-strong);
            padding: 10px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        header .brand { display: flex; align-items: center; gap: 10px; }
        header .brand img { width: 25px; height: 25px; }
        header .brand strong { font-size: 16px; font-weight: normal; }
        header .auth-btns { display: flex; gap: 10px; }
        .btn {
            padding: 8px 20px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-family: 'Roboto', sans-serif;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--primary); color: var(--text-inverse); }

        .banner-box { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner-box img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-section {
            background: linear-gradient(135deg, var(--bg-surface), #000);
            text-align: center;
            padding: 30px 0;
            border-bottom: 1px solid var(--border-medium);
        }
        .jackpot-title { font-size: 18px; color: var(--secondary); margin-bottom: 10px; text-transform: uppercase; }
        .jackpot-amount {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            color: var(--primary);
            font-weight: bold;
            text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
        }

        .intro-card {
            background: var(--bg-surface);
            padding: 40px 20px;
            border-radius: 15px;
            border: 1px solid var(--border-medium);
            text-align: center;
            margin: 30px 0;
        }
        .intro-card h1 { font-size: 32px; color: var(--primary); margin-bottom: 15px; }
        .intro-card p { font-size: 18px; color: var(--text-secondary); max-width: 800px; margin: 0 auto; }

        .section-title { text-align: center; font-size: 24px; margin: 40px 0 20px; color: var(--primary); text-transform: uppercase; }
        
        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 40px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            transition: transform 0.3s;
        }
        .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; text-align: center; color: var(--text-primary); }

        .payment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 15px;
            text-align: center;
            margin-bottom: 40px;
        }
        .payment-item {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 8px;
            border: 1px solid var(--border-subtle);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            font-size: 14px;
        }
        .payment-item i { font-size: 24px; color: var(--primary); }

        .guide-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: 10px;
            border-left: 4px solid var(--primary);
        }
        .guide-card h3 { margin-bottom: 10px; color: var(--primary); }
        .guide-card p { font-size: 14px; color: var(--text-secondary); }

        .lottery-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--bg-surface);
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 40px;
        }
        .lottery-table th, .lottery-table td {
            padding: 12px;
            text-align: center;
            border-bottom: 1px solid var(--border-subtle);
        }
        .lottery-table th { background: var(--primary-dark); color: var(--text-inverse); }
        .win-amount { color: var(--success); font-weight: bold; }

        .provider-wall {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-bottom: 40px;
        }
        .provider-box {
            background: var(--primary);
            color: var(--text-inverse);
            padding: 15px;
            text-align: center;
            font-weight: bold;
            border-radius: 5px;
        }

        .comment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .comment-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 10px;
            border: 1px solid var(--border-subtle);
        }
        .user-info { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .user-info i { font-size: 30px; color: var(--primary); }
        .stars { color: var(--warning); margin-bottom: 10px; }
        .comment-date { font-size: 12px; color: var(--text-muted); display: block; margin-top: 10px; }

        .faq-section { margin-bottom: 40px; }
        .faq-item {
            background: var(--bg-surface);
            margin-bottom: 10px;
            border-radius: 8px;
            border: 1px solid var(--border-subtle);
        }
        .faq-question {
            padding: 15px;
            cursor: pointer;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            color: var(--primary);
        }
        .faq-answer { padding: 0 15px 15px; color: var(--text-secondary); font-size: 14px; }

        .security-banner {
            background: var(--bg-surface);
            border: 2px dashed var(--border-medium);
            padding: 30px;
            text-align: center;
            border-radius: 15px;
            margin-bottom: 40px;
        }
        .security-icons { display: flex; justify-content: center; gap: 30px; margin-bottom: 20px; flex-wrap: wrap; }
        .security-icons div { display: flex; flex-direction: column; align-items: center; gap: 5px; }
        .security-icons i { font-size: 40px; color: var(--success); }
        .security-banner p { color: var(--text-secondary); margin-bottom: 10px; }
        .security-banner a { color: var(--primary); text-decoration: underline; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-surface);
            border-top: 1px solid var(--border-strong);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            z-index: 2000;
        }
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 12px;
            color: var(--text-secondary);
        }
        .nav-item i { font-size: 20px; margin-bottom: 5px; color: var(--primary); }

        footer {
            background: #000;
            padding: 50px 0 100px;
            border-top: 5px solid var(--primary);
            font-size: 14px;
        }
        footer .contact-row {
            text-align: center;
            margin-bottom: 30px;
            border-bottom: 1px solid var(--border-subtle);
            padding-bottom: 20px;
        }
        footer .contact-links { display: flex; justify-content: center; gap: 20px; margin-top: 10px; }
        footer .footer-cols {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            text-align: center;
            margin-bottom: 30px;
        }
        footer .col-links a { display: block; margin-bottom: 8px; color: var(--text-secondary); }
        footer .col-links a:hover { color: var(--primary); }
        footer .copyright { text-align: center; color: var(--text-muted); font-size: 12px; }

        @media (max-width: 768px) {
            .footer-cols { grid-template-columns: repeat(2, 1fr); }
            .jackpot-amount { font-size: 32px; }
            .intro-card h1 { font-size: 24px; }
        }