:root {
            --primary: #FFD700;
            --primary-hover: #FFC107;
            --secondary: #B8860B;
            --accent: #E91E63;
            --bg-main: #0F0F0F;
            --bg-surface: #1A1A1A;
            --bg-surface-variant: #2C2C2C;
            --overlay: rgba(0, 0, 0, 0.8);
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-disabled: #666666;
            --text-inverse: #000000;
            --success: #4CAF50;
            --warning: #FF9800;
            --error: #F44336;
            --info: #2196F3;
            --border-subtle: #333333;
            --border-medium: #444444;
            --border-strong: #FFD700;
            --font-heading: 'Montserrat', 'Segoe UI', Roboto, sans-serif;
            --font-body: 'Roboto', 'Segoe UI', Arial, sans-serif;
            --font-mono: 'JetBrains Mono', monospace;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
        body { background-color: var(--bg-main); color: var(--text-primary); font-family: var(--font-body); line-height: 1.5; overflow-x: hidden; }
        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: 2px solid var(--border-strong);
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        header .logo-section { display: flex; align-items: center; gap: 10px; }
        header .logo-section img { width: 25px; height: 25px; }
        header .logo-section strong { font-size: 16px; font-weight: normal; }
        header .auth-buttons { display: flex; gap: 10px; }
        header .btn {
            padding: 8px 16px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-family: var(--font-heading);
            transition: 0.3s;
        }
        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-register { background: var(--primary); color: var(--text-inverse); }
        header .btn-register:hover { background: var(--primary-hover); }

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

        .jackpot-section {
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            padding: 20px;
            text-align: center;
            border-radius: 15px;
            margin-bottom: 30px;
            color: var(--text-inverse);
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
        }
        .jackpot-title { font-family: var(--font-heading); font-weight: 800; font-size: 20px; text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount { font-family: var(--font-mono); font-size: 36px; font-weight: 800; }

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

        .section-title { font-family: var(--font-heading); font-size: 24px; text-align: center; margin-bottom: 25px; position: relative; padding-bottom: 10px; }
        .section-title::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background: var(--primary); }

        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-bottom: 40px; }
        .game-card { background: var(--bg-surface-variant); border-radius: 12px; overflow: hidden; transition: 0.3s; border: 1px solid var(--border-subtle); }
        .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 { font-size: 14px; padding: 12px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

        .payment-licenses {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 15px;
            margin-bottom: 40px;
            text-align: center;
        }
        .pl-item { background: var(--bg-surface); padding: 15px; border-radius: 10px; border: 1px solid var(--border-medium); display: flex; flex-direction: column; align-items: center; gap: 10px; }
        .pl-item i { font-size: 24px; color: var(--primary); }
        .pl-item span { font-size: 12px; color: var(--text-secondary); font-weight: 500; }

        .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: 12px; border: 1px solid var(--border-subtle); }
        .guide-card h3 { color: var(--primary); margin-bottom: 10px; font-size: 18px; }
        .guide-card p { color: var(--text-secondary); font-size: 14px; line-height: 1.6; }

        .lottery-table { width: 100%; border-collapse: collapse; background: var(--bg-surface); border-radius: 12px; 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(--bg-surface-variant); color: var(--primary); font-family: var(--font-heading); }
        .lottery-table td { font-size: 14px; }
        .win-amount { color: var(--success); font-weight: bold; }

        .provider-wall {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-bottom: 40px;
        }
        .provider-item { background: var(--bg-surface-variant); padding: 15px; border-radius: 8px; text-align: center; font-weight: bold; border: 1px solid var(--border-medium); }
        .provider-item:nth-child(odd) { color: var(--primary); }
        .provider-item:nth-child(even) { color: var(--accent); }

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

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

        .security-banner {
            background: var(--bg-surface-variant);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            border: 1px dashed var(--primary);
        }
        .security-icons { display: flex; justify-content: center; gap: 30px; margin-bottom: 20px; flex-wrap: wrap; }
        .security-icon-item { display: flex; flex-direction: column; align-items: center; gap: 10px; }
        .security-icon-item i { font-size: 40px; color: var(--success); }
        .security-icon-item span { font-size: 12px; font-weight: 500; }
        .security-text { color: var(--text-secondary); font-size: 14px; max-width: 700px; margin: 0 auto 15px; }
        .security-link { color: var(--primary); font-weight: bold; text-decoration: underline; }

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

        footer {
            background-color: var(--bg-surface);
            padding: 40px 20px 120px;
            border-top: 1px solid var(--border-medium);
            text-align: center;
        }
        footer .contact-links { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; flex-wrap: wrap; }
        footer .contact-links a { color: var(--text-secondary); font-size: 14px; }
        footer .contact-links a:hover { color: var(--primary); }
        footer .footer-cols {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            max-width: 800px;
            margin: 0 auto 30px;
            text-align: left;
        }
        footer .footer-col { display: flex; flex-direction: column; gap: 8px; }
        footer .footer-col a { color: var(--text-secondary); font-size: 13px; }
        footer .footer-col a:hover { color: var(--primary); }
        footer .copyright { color: var(--text-disabled); font-size: 12px; margin-top: 20px; }

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