:root {
            --primary: #FFD700;
            --primary-hover: #FFC107;
            --secondary: #B8860B;
            --accent: #FF4500;
            --bg-main: #0F0F0F;
            --bg-surface: #1A1A1A;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --bg-highlight: #252525;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-disabled: #666666;
            --text-inverse: #000000;
            --success: #28A745;
            --warning: #FFC107;
            --error: #DC3545;
            --info: #17A2B8;
            --border-default: #333333;
            --border-strong: #444444;
            --border-brand: #FFD700;
            --font-primary: 'Montserrat', sans-serif;
            --font-secondary: 'Roboto', sans-serif;
            --font-accent: 'Playfair Display', serif;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-primary);
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 80px;
        }

        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;
            height: 60px;
        }
        header .brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
        header .brand img { width: 25px; height: 25px; object-fit: contain; }
        header .brand strong { font-size: 16px; font-weight: normal; color: var(--primary); }
        header .auth-buttons { display: flex; gap: 10px; }
        header .btn {
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
            font-family: var(--font-primary);
            font-size: 14px;
        }
        header .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        header .btn-login:hover { background: var(--primary); color: var(--text-inverse); }
        header .btn-reg { background: var(--primary); color: var(--text-inverse); }
        header .btn-reg:hover { background: var(--primary-hover); }

        main { max-width: 1200px; margin: 0 auto; padding: 20px; }
        .banner-container { width: 100%; aspect-ratio: 2/1; margin-bottom: 20px; cursor: pointer; border-radius: 15px; overflow: hidden; border: 2px solid var(--border-strong); }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
        .banner-container:hover img { transform: scale(1.02); }

        .jackpot-section {
            background: linear-gradient(45deg, var(--bg-surface), var(--bg-highlight));
            border: 2px solid var(--secondary);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 30px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-title { font-family: var(--font-accent); color: var(--primary); font-size: 20px; margin-bottom: 10px; text-transform: uppercase; }
        .jackpot-amount {
            font-size: 36px;
            font-weight: bold;
            color: #fff;
            text-shadow: 0 0 10px var(--primary);
            font-family: 'Courier New', monospace;
        }

        .intro-card {
            background: var(--bg-surface);
            padding: 30px;
            border-radius: 20px;
            border-left: 5px solid var(--primary);
            margin-bottom: 40px;
            text-align: center;
        }
        .intro-card h1 { font-family: var(--font-accent); 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; }

        .section-title { font-family: var(--font-accent); font-size: 24px; color: var(--primary); text-align: center; margin: 40px 0 20px; position: relative; }
        .section-title::after { content: ''; display: block; width: 50px; height: 3px; background: var(--accent); margin: 10px auto; }

        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            border: 1px solid var(--border-default);
            transition: 0.3s;
        }
        .game-card:hover { transform: translateY(-5px); border-color: var(--primary); box-shadow: 0 5px 15px rgba(0,0,0,0.5); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { padding: 12px; font-size: 15px; color: var(--text-primary); text-align: center; font-weight: 500; }

        .payment-methods {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-bottom: 40px;
        }
        .payment-item {
            background: var(--bg-highlight);
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            font-size: 13px;
            color: var(--text-secondary);
            border: 1px solid var(--border-default);
        }
        .payment-item i { display: block; font-size: 24px; color: var(--primary); margin-bottom: 8px; }

        .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: 15px;
            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: var(--bg-surface);
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 40px;
        }
        .lottery-table th { background: var(--secondary); color: #fff; padding: 15px; text-align: left; }
        .lottery-table td { padding: 12px 15px; border-bottom: 1px solid var(--border-default); font-size: 14px; }
        .lottery-table tr:last-child td { border: none; }
        .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(--bg-highlight);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            font-weight: 600;
            border: 1px solid var(--border-strong);
            color: var(--primary);
        }

        .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: 15px;
            border: 1px solid var(--border-default);
        }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-header i { font-size: 30px; color: var(--primary); }
        .comment-user { font-weight: bold; }
        .comment-stars { color: var(--warning); font-size: 13px; margin-bottom: 10px; }
        .comment-text { color: var(--text-secondary); font-size: 14px; margin-bottom: 10px; font-style: italic; }
        .comment-date { font-size: 12px; color: var(--text-disabled); }

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

        .security-section {
            text-align: center;
            background: var(--bg-surface);
            padding: 30px;
            border-radius: 20px;
            border: 1px solid var(--border-strong);
        }
        .security-badges { display: flex; justify-content: center; gap: 30px; margin-bottom: 20px; flex-wrap: wrap; }
        .badge { color: var(--text-secondary); font-size: 14px; display: flex; align-items: center; gap: 8px; }
        .badge i { color: var(--success); font-size: 20px; }
        .security-commit { color: var(--text-secondary); font-size: 14px; max-width: 700px; margin: 0 auto 20px; }
        .age-limit {
            display: inline-block;
            border: 2px solid var(--error);
            color: var(--error);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            line-height: 36px;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-surface);
            border-top: 2px solid var(--border-brand);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            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;
            flex: 1;
        }
        .nav-item i { font-size: 20px; }
        .nav-item:hover { color: var(--primary); }

        footer {
            background: var(--bg-surface);
            padding: 40px 20px;
            text-align: center;
            border-top: 1px solid var(--border-default);
        }
        .footer-contact { margin-bottom: 30px; }
        .footer-contact a {
            color: var(--text-secondary);
            text-decoration: none;
            margin: 0 10px;
            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: center;
        }
        .footer-links a {
            color: var(--text-disabled);
            text-decoration: none;
            font-size: 13px;
            transition: 0.3s;
        }
        .footer-links a:hover { color: var(--text-primary); }
        .footer-copyright { color: var(--text-disabled); font-size: 13px; border-top: 1px solid var(--border-default); padding-top: 20px; }

        @media (max-width: 768px) {
            .payment-methods { grid-template-columns: repeat(2, 1fr); }
            .footer-links { grid-template-columns: repeat(2, 1fr); }
        }