:root {
            --primary: #FFD700;
            --primary-dark: #B8860B;
            --secondary: #C0C0C0;
            --accent: #FF0000;
            --bg-main: #0B0E11;
            --bg-surface: #1E2329;
            --bg-surface-light: #2B3139;
            --bg-overlay: rgba(0, 0, 0, 0.7);
            --text-primary: #FFFFFF;
            --text-secondary: #929AA5;
            --text-muted: #474D57;
            --text-inverse: #0B0E11;
            --success: #0ECB81;
            --warning: #F0B90B;
            --error: #F6465D;
            --info: #3498DB;
            --border-default: #363C44;
            --border-light: #474D57;
            --border-strong: #FFD700;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }
        h1, h2, h3 { font-family: 'Montserrat', 'Segoe UI', Roboto, sans-serif; font-weight: 700; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }

        header {
            background-color: var(--bg-surface);
            border-bottom: 1px solid var(--border-default);
            padding: 0 20px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        header .brand { display: flex; align-items: center; gap: 10px; }
        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; }
        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            font-size: 14px;
            border: none;
            transition: 0.2s;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-light); }
        .btn-login:hover { border-color: var(--primary); color: var(--primary); }
        .btn-register { background: var(--primary); color: var(--text-inverse); }
        .btn-register:hover { background: var(--primary-dark); }

        main { padding-bottom: 80px; }
        .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: linear-gradient(135deg, var(--bg-surface), var(--bg-main));
            text-align: center;
            padding: 20px;
            margin: 20px 0;
            border: 2px solid var(--primary);
            border-radius: 12px;
            box-shadow: 0 0 15px var(--primary-dark);
        }
        .jackpot-label { font-size: 18px; color: var(--secondary); margin-bottom: 10px; }
        .jackpot-amount {
            font-family: 'JetBrains Mono', monospace;
            font-size: 32px;
            color: var(--primary);
            font-weight: bold;
            display: block;
        }

        .intro-card {
            background: var(--bg-surface);
            margin: 20px;
            padding: 25px;
            border-radius: 16px;
            border-left: 5px solid var(--primary);
            text-align: center;
        }
        .intro-card h1 { font-size: 24px; color: var(--primary); margin-bottom: 15px; }
        .intro-card p { color: var(--text-secondary); font-size: 16px; }

        .section-title {
            text-align: center;
            font-size: 22px;
            margin: 30px 0 20px;
            color: var(--primary);
            text-transform: uppercase;
        }

        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            padding: 0 15px;
        }
        .game-card {
            background: var(--bg-surface-light);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-default);
            transition: transform 0.2s;
        }
        .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: 14px;
            text-align: center;
            color: var(--text-primary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .payment-section {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            padding: 20px;
            background: var(--bg-surface);
            margin: 30px 0;
        }
        .payment-item {
            background: var(--bg-main);
            padding: 10px 15px;
            border-radius: 8px;
            border: 1px solid var(--border-default);
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-secondary);
        }
        .payment-item i { color: var(--primary); }

        .guides-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            padding: 0 15px;
        }
        .guide-card {
            background: var(--bg-surface);
            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: 90%;
            margin: 20px auto;
            border-collapse: collapse;
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
        }
        .lottery-table th, .lottery-table td {
            padding: 12px;
            text-align: center;
            border-bottom: 1px solid var(--border-default);
            font-size: 14px;
        }
        .lottery-table th { background: var(--bg-surface-light); color: var(--primary); }
        .win-amount { color: var(--success); font-weight: bold; }

        .providers-wall {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            padding: 15px;
        }
        .provider-box {
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            font-weight: bold;
            font-size: 14px;
            background: linear-gradient(45deg, var(--bg-surface-light), var(--bg-surface));
            border: 1px solid var(--border-default);
        }
        .provider-box:nth-child(odd) { border-left: 4px solid var(--primary); }
        .provider-box:nth-child(even) { border-left: 4px solid var(--info); }

        .comment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 15px;
            padding: 0 15px;
        }
        .comment-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border-default);
        }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-header i { font-size: 24px; color: var(--primary); }
        .comment-header .user-name { font-weight: bold; }
        .comment-stars { color: var(--warning); font-size: 12px; margin-bottom: 10px; }
        .comment-text { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; }
        .comment-date { font-size: 12px; color: var(--text-muted); }

        .faq-container {
            max-width: 800px;
            margin: 30px auto;
            padding: 0 15px;
        }
        .faq-item {
            background: var(--bg-surface);
            margin-bottom: 10px;
            border-radius: 8px;
            border: 1px solid var(--border-default);
            overflow: hidden;
        }
        .faq-question {
            padding: 15px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--primary);
        }
        .faq-answer {
            padding: 0 15px 15px;
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.6;
        }

        .security-section {
            text-align: center;
            padding: 30px 15px;
            background: var(--bg-surface);
            margin-top: 40px;
        }
        .security-badges {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        .badge {
            padding: 10px 20px;
            background: var(--bg-main);
            border: 1px solid var(--primary);
            border-radius: 20px;
            font-size: 13px;
            color: var(--primary);
        }
        .security-text { color: var(--text-secondary); font-size: 14px; max-width: 600px; margin: 0 auto 20px; }
        .security-link { color: var(--info); text-decoration: underline; font-size: 13px; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 65px;
            background: var(--bg-surface);
            border-top: 1px solid var(--border-default);
            display: flex;
            justify-content: space-around;
            align-items: center;
            z-index: 2000;
            padding-bottom: env(safe-area-inset-bottom);
        }
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 11px;
            color: var(--text-secondary);
            gap: 5px;
        }
        .nav-item i { font-size: 20px; }
        .nav-item:hover { color: var(--primary); }

        footer {
            background: var(--bg-surface);
            padding: 40px 20px 100px;
            border-top: 1px solid var(--border-default);
            text-align: center;
        }
        .footer-contact {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
            flex-wrap: wrap;
            font-size: 14px;
        }
        .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 {
            font-size: 13px;
            color: var(--text-secondary);
            padding: 5px 0;
        }
        .footer-links a:hover { color: var(--primary); }
        .copyright {
            font-size: 13px;
            color: var(--text-muted);
            border-top: 1px solid var(--border-default);
            padding-top: 20px;
        }

        @media (max-width: 768px) {
            .footer-links { grid-template-columns: repeat(3, 1fr); }
            .game-grid { gap: 10px; padding: 0 10px; }
        }