:root {
            --primary: #FFD700;
            --primary-hover: #E6C200;
            --secondary: #1E2329;
            --accent: #00C853;
            --bg-main: #0B0E11;
            --bg-surface: #181A20;
            --bg-elevated: #1E2329;
            --text-primary: #FFFFFF;
            --text-secondary: #B7BDC6;
            --text-muted: #707A8A;
            --semantic-win: #00FF7F;
            --border-default: #2B3139;
            --radius: 12px;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            padding-bottom: 70px;
        }

        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; }

        header {
            height: 60px;
            background-color: var(--bg-surface);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 16px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-default);
        }

        .logo-area { display: flex; align-items: center; gap: 8px; }
        .logo-area img { width: 25px; height: 25px; object-fit: contain; }
        .logo-area strong { font-size: 16px; font-weight: 400; color: var(--primary); }

        .auth-btns { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
            text-decoration: none;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--primary); color: #000; }
        .btn-register:hover { background: var(--primary-hover); }

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

        .jackpot-container {
            margin: 20px 16px;
            background: linear-gradient(135deg, #1e2329 0%, #0b0e11 100%);
            border: 2px solid var(--primary);
            border-radius: var(--radius);
            padding: 20px;
            text-align: center;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }
        .jackpot-label { color: var(--primary); font-size: 14px; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount { font-family: 'Roboto Mono', monospace; font-size: 32px; font-weight: 900; color: var(--semantic-win); }

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

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

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 16px; }
        .game-card { background: var(--bg-surface); border-radius: var(--radius); overflow: hidden; text-decoration: none; border: 1px solid var(--border-default); transition: 0.3s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 11px; color: var(--text-muted); }

        .payments-licences { margin: 25px 16px; background: var(--bg-elevated); padding: 20px; border-radius: var(--radius); text-align: center; }
        .icon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-top: 15px; opacity: 0.8; }
        .icon-grid i { font-size: 24px; color: var(--text-secondary); }

        .guidelines { padding: 0 16px; margin: 30px 0; }
        .guide-item { background: var(--bg-surface); padding: 15px; border-radius: var(--radius); margin-bottom: 12px; border-left: 3px solid var(--primary); }
        .guide-item h2 { font-size: 18px; margin-bottom: 8px; color: var(--primary); }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }

        .marquee-container { background: #000; padding: 10px 0; margin: 20px 0; overflow: hidden; border-top: 1px solid var(--border-default); border-bottom: 1px solid var(--border-default); }
        .marquee-content { display: flex; white-space: nowrap; animation: marquee 30s linear infinite; }
        .winner-pill { background: var(--bg-elevated); padding: 5px 15px; margin: 0 10px; border-radius: 20px; font-size: 13px; border: 1px solid var(--border-default); }
        .winner-pill span { color: var(--semantic-win); font-weight: 700; }

        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        .providers-wall { margin: 25px 16px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
        .provider-tag { background: var(--bg-surface); padding: 8px 15px; border-radius: 20px; font-size: 12px; color: var(--text-secondary); border: 1px solid var(--border-default); }

        .comments-section { padding: 0 16px; margin: 30px 0; }
        .comment-card { background: var(--bg-surface); padding: 15px; border-radius: var(--radius); margin-bottom: 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(--text-muted); }
        .user-info h3 { font-size: 14px; margin-bottom: 2px; }
        .stars { color: var(--primary); font-size: 12px; }
        .comment-date { font-size: 11px; color: var(--text-muted); float: right; }
        .comment-text { font-size: 13px; color: var(--text-secondary); margin-top: 8px; }

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

        .security-section { margin: 25px 16px; padding: 20px; background: #1a1d24; border-radius: var(--radius); text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 30px; color: var(--accent); }
        .security-text { font-size: 12px; color: var(--text-muted); }

        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; height: 65px; background: var(--bg-surface); display: flex; justify-content: space-around; align-items: center; border-top: 1px solid var(--border-default); z-index: 1000; }
        .nav-item { text-decoration: none; color: var(--text-muted); display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; }
        .nav-item i { font-size: 20px; }
        .nav-item:nth-child(3) { color: var(--primary); }

        footer { background: #050608; padding: 40px 16px 100px; text-align: center; }
        .footer-social { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .footer-social a { color: var(--text-secondary); font-size: 20px; text-decoration: none; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-links a { color: var(--text-muted); font-size: 12px; text-decoration: none; text-align: left; }
        .footer-copy { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-default); padding-top: 20px; }