:root {
            --brand-primary: #D4AF37;
            --brand-primary-hover: #F1C40F;
            --brand-secondary: #059669;
            --brand-secondary-hover: #10B981;
            --brand-accent: #FF4500;
            --bg-main: #0D0D0D;
            --bg-surface: #1A1A1A;
            --bg-elevated: #262626;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #737373;
            --text-brand-contrast: #000000;
            --border-default: #333333;
            --border-strong: #4D4D4D;
            --border-gold: #D4AF37;
            --font-headings: 'Montserrat', sans-serif;
            --font-body: 'Inter', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-body);
            line-height: 1.5;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: var(--font-headings); font-weight: 700; color: var(--brand-primary); }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        img { max-width: 100%; height: auto; display: block; }
        .container { padding: 0 15px; width: 100%; max-width: 1200px; margin: 0 auto; }
        
        header {
            background-color: var(--bg-surface);
            height: 60px;
            display: flex;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-default);
        }
        .header-content { display: flex; justify-content: space-between; align-items: center; width: 100%; }
        .logo-area { display: flex; align-items: center; gap: 8px; }
        .logo-area img { width: 25px; height: 25px; }
        .logo-area strong { font-size: 16px; font-weight: 400; color: var(--text-primary); }
        .auth-buttons { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 0.875rem;
            cursor: pointer;
            border: none;
        }
        .btn-login { background-color: transparent; color: var(--brand-primary); border: 1px solid var(--brand-primary); }
        .btn-register { background-color: var(--brand-primary); color: var(--text-brand-contrast); }
        .btn-register:hover { background-color: var(--brand-primary-hover); }

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

        .jackpot-container {
            background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
            margin: 20px 15px;
            padding: 20px;
            border-radius: 12px;
            border: 2px solid var(--border-gold);
            text-align: center;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }
        .jackpot-title { font-size: 1.25rem; color: var(--text-primary); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 2.5rem; font-weight: 900; color: var(--brand-primary); text-shadow: 0 0 10px var(--brand-primary); font-family: 'JetBrains Mono', monospace; }

        .intro-card { background: var(--bg-surface); margin: 20px 15px; padding: 25px; border-radius: 15px; text-align: center; }
        .intro-card h1 { font-size: 1.5rem; margin-bottom: 15px; line-height: 1.2; }
        .intro-card p { color: var(--text-secondary); font-size: 1rem; }

        .section-title { margin: 25px 15px 15px; font-size: 1.25rem; border-left: 4px solid var(--brand-primary); padding-left: 10px; }
        
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-elevated); border-radius: 10px; overflow: hidden; border: 1px solid var(--border-default); transition: transform 0.3s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { font-size: 0.9rem; padding: 10px; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

        .payments-licenses { background: var(--bg-surface); margin: 30px 15px; padding: 20px; border-radius: 12px; }
        .pl-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .pl-item { display: flex; flex-direction: column; align-items: center; gap: 5px; }
        .pl-item i { font-size: 1.5rem; color: var(--brand-primary); }
        .pl-item span { font-size: 0.7rem; color: var(--text-muted); }

        .guides-container { padding: 15px; display: flex; flex-direction: column; gap: 20px; }
        .guide-item { background: var(--bg-surface); padding: 20px; border-radius: 12px; border: 1px solid var(--border-default); }
        .guide-item h3 { margin-bottom: 10px; font-size: 1.1rem; }
        .guide-item p { color: var(--text-secondary); font-size: 0.9rem; }

        .lottery-ticker { background: var(--bg-surface); margin: 20px 0; padding: 10px 0; overflow: hidden; position: relative; height: 120px; border-top: 1px solid var(--border-default); border-bottom: 1px solid var(--border-default); }
        .ticker-track { display: flex; flex-direction: column; animation: scroll-up 40s linear infinite; }
        .ticker-item { padding: 8px 15px; font-size: 0.85rem; border-bottom: 1px solid #222; display: flex; justify-content: space-between; }
        .ticker-user { color: var(--brand-primary); font-weight: 600; }
        .ticker-win { color: var(--brand-secondary); font-weight: 700; }
        @keyframes scroll-up { 0% { transform: translateY(0); } 100% { transform: translateY(-100%); } }

        .providers-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }
        .provider-block { background: var(--brand-primary); color: var(--text-brand-contrast); padding: 20px; border-radius: 10px; text-align: center; font-weight: 900; font-size: 1.1rem; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px; }
        .provider-block:nth-child(2) { background: var(--bg-elevated); color: var(--brand-primary); border: 1px solid var(--brand-primary); }

        .reviews-container { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
        .review-card { background: var(--bg-surface); padding: 20px; border-radius: 15px; border-bottom: 3px solid var(--brand-primary); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 1.5rem; color: var(--text-muted); }
        .review-user { font-weight: 600; flex-grow: 1; }
        .stars { color: #FFCC00; font-size: 0.8rem; }
        .review-content { color: var(--text-secondary); font-size: 0.875rem; font-style: italic; }
        .review-date { display: block; margin-top: 10px; font-size: 0.75rem; color: var(--text-muted); }

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

        .security-footer { background: var(--bg-surface); margin: 30px 15px; padding: 25px; border-radius: 15px; text-align: center; border: 1px dashed var(--text-muted); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 1.8rem; color: var(--brand-secondary); }
        .age-limit { display: inline-block; border: 2px solid var(--brand-accent); color: var(--brand-accent); border-radius: 50%; width: 40px; height: 40px; line-height: 36px; font-weight: 900; margin-bottom: 10px; }

        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; height: 65px; background: var(--bg-surface); border-top: 2px solid var(--brand-primary); display: flex; justify-content: space-around; align-items: center; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-secondary); font-size: 0.75rem; width: 20%; }
        .nav-item i { font-size: 1.2rem; }
        .nav-item:hover { color: var(--brand-primary); }

        footer { background: var(--bg-main); padding: 40px 15px 100px; border-top: 1px solid var(--border-default); }
        .footer-contact { margin-bottom: 30px; }
        .footer-contact h2 { font-size: 1.2rem; margin-bottom: 15px; }
        .contact-links { display: flex; flex-wrap: wrap; gap: 15px; }
        .contact-link { color: var(--brand-primary); font-size: 0.9rem; }
        .footer-links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 30px; }
        .footer-links-grid a { color: var(--text-secondary); font-size: 0.85rem; display: block; margin-bottom: 8px; }
        .copyright { text-align: center; font-size: 0.8rem; color: var(--text-muted); border-top: 1px solid var(--border-default); padding-top: 20px; }