:root {
            --primary: #FFD700;
            --primary-hover: #FFC107;
            --secondary: #C0C0C0;
            --accent: #FF4500;
            --bg-main: #0B0E11;
            --bg-surface: #181A20;
            --bg-surface-variant: #2B2F36;
            --overlay: rgba(0, 0, 0, 0.7);
            --text-primary: #FFFFFF;
            --text-secondary: #B7BDC6;
            --text-disabled: #5E6673;
            --text-inverse: #0B0E11;
            --success: #0ECB81;
            --warning: #F0B90B;
            --error: #F6465D;
            --info: #1E90FF;
            --border-subtle: #2B2F36;
            --border-medium: #474D57;
            --border-strong: #FFD700;
            --font-heading: 'Montserrat', 'Segoe UI', Roboto, sans-serif;
            --font-body: 'Inter', 'Segoe UI', Roboto, sans-serif;
        }

        * { 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; padding-bottom: 80px; }
        h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
        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-subtle); 
            position: sticky; 
            top: 0; 
            z-index: 1000; 
            padding: 0 15px; 
            height: 60px; 
            display: flex; 
            align-items: center; 
            justify-content: space-between; 
        }
        header .logo-group { display: flex; align-items: center; gap: 10px; }
        header .logo-group img { width: 25px; height: 25px; }
        header .logo-group strong { font-size: 16px; font-weight: 400; color: var(--primary); }
        header .auth-buttons { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 6px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: 0.2s; }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-medium); }
        .btn-login:hover { background: var(--bg-surface-variant); }
        .btn-register { background: var(--primary); color: var(--text-inverse); }
        .btn-register:hover { background: var(--primary-hover); }

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

        .jackpot-container { 
            background: linear-gradient(135deg, #181A20 0%, #2B2F36 100%); 
            border: 2px solid var(--primary); 
            border-radius: 15px; 
            padding: 20px; 
            text-align: center; 
            margin-bottom: 20px; 
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-title { color: var(--primary); font-size: 18px; text-transform: uppercase; margin-bottom: 10px; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; font-family: 'JetBrains Mono', monospace; }

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

        .section-title { font-size: 22px; margin: 30px 0 20px; display: flex; align-items: center; gap: 10px; color: var(--text-primary); }
        .section-title::before { content: ''; width: 4px; height: 22px; background: var(--primary); border-radius: 2px; }

        .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; border: 1px solid var(--border-subtle); transition: 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-info { padding: 12px; text-align: center; }
        .game-info h3 { font-size: 15px; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

        .payment-methods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 30px; }
        .payment-item { background: var(--bg-surface-variant); padding: 15px; border-radius: 10px; text-align: center; font-size: 12px; color: var(--text-secondary); border: 1px solid var(--border-subtle); }
        .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: 15px; margin-bottom: 30px; }
        .guide-card { background: var(--bg-surface); padding: 20px; border-radius: 12px; border: 1px solid var(--border-subtle); }
        .guide-card h3 { font-size: 18px; color: var(--primary); margin-bottom: 10px; }
        .guide-card p { font-size: 14px; color: var(--text-secondary); }

        .lottery-table { width: 100%; border-collapse: collapse; background: var(--bg-surface); border-radius: 12px; overflow: hidden; margin-bottom: 30px; }
        .lottery-table th { background: var(--bg-surface-variant); color: var(--primary); padding: 12px; text-align: left; font-size: 14px; }
        .lottery-table td { padding: 12px; border-bottom: 1px solid var(--border-subtle); font-size: 14px; }
        .lottery-table tr:last-child td { border-bottom: none; }
        .win-amount { color: var(--success); font-weight: 600; }

        .providers-wall { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 30px; }
        .provider-box { padding: 15px; border-radius: 8px; font-weight: 600; text-align: center; font-size: 14px; }
        .provider-box:nth-child(odd) { background: var(--primary); color: var(--text-inverse); }
        .provider-box:nth-child(even) { background: var(--bg-surface-variant); color: var(--primary); border: 1px solid var(--primary); }

        .comment-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 15px; margin-bottom: 30px; }
        .comment-card { background: var(--bg-surface); padding: 20px; border-radius: 12px; border: 1px solid var(--border-subtle); position: relative; }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-header i { font-size: 30px; color: var(--secondary); }
        .comment-header .user-name { font-weight: 600; }
        .stars { color: var(--warning); font-size: 12px; margin-bottom: 10px; }
        .comment-body { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; }
        .comment-date { font-size: 12px; color: var(--text-disabled); }

        .faq-section { margin-bottom: 30px; }
        .faq-item { background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: 10px; margin-bottom: 10px; padding: 15px; }
        .faq-item h3 { font-size: 16px; color: var(--primary); margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }

        .security-footer { background: var(--bg-surface); padding: 25px; border-radius: 15px; text-align: center; border: 1px solid var(--border-subtle); margin-bottom: 30px; }
        .security-footer .ssl-badge { font-size: 40px; color: var(--success); margin-bottom: 15px; }
        .security-footer p { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; }
        .security-footer 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-subtle); 
            display: flex; 
            justify-content: space-around; 
            padding: 10px 0; 
            z-index: 1000; 
            backdrop-filter: blur(10px); 
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 5px; color: var(--text-secondary); font-size: 11px; }
        .nav-item i { font-size: 20px; }
        .nav-item:hover { color: var(--primary); }

        footer { 
            background: var(--bg-surface); 
            border-top: 1px solid var(--border-subtle); 
            padding: 40px 15px 100px; 
            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 .footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 800px; margin: 0 auto 30px; text-align: left; }
        footer .col-item { font-size: 14px; color: var(--text-secondary); margin-bottom: 8px; }
        footer .col-item a:hover { color: var(--primary); }
        footer .copyright { border-top: 1px solid var(--border-subtle); padding-top: 20px; font-size: 13px; color: var(--text-disabled); }

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