:root {
            --bg-primary: #0D0D0D;
            --bg-secondary: #1A1A1B;
            --bg-surface: #252627;
            --gold-primary: #D4AF37;
            --gold-hover: #F9E076;
            --red-secondary: #E63946;
            --text-white: #FFFFFF;
            --text-grey: #B0B0B0;
            --gradient-gold: linear-gradient(180deg, #D4AF37 0%, #8A6D3B 100%);
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-white);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--gold-primary); }
        a { text-decoration: none; color: inherit; }

        header {
            background-color: var(--bg-secondary);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #333;
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--text-white); }
        .header-right { display: flex; gap: 10px; }
        .btn-login, .btn-register {
            padding: 6px 14px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: transparent; color: var(--gold-primary); border: 1px solid var(--gold-primary); }
        .btn-register { background: var(--gradient-gold); color: #000; }

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

        .jackpot-container {
            background: var(--bg-surface);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--gold-primary);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
        }
        .jackpot-label { font-size: 14px; color: var(--text-grey); text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: 900; color: var(--gold-primary); font-family: 'Roboto Mono', monospace; margin-top: 5px; }

        section { padding: 25px 15px; }
        .intro-section h1 { font-size: 24px; margin-bottom: 15px; line-height: 1.2; }
        .intro-section p { color: var(--text-grey); font-size: 16px; }

        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
        .game-card { background: var(--bg-secondary); border-radius: 12px; overflow: hidden; border: 1px solid #333; transition: 0.3s; }
        .game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
        .game-card h3 { font-size: 14px; padding: 10px; text-align: center; color: var(--text-white); }

        .article-list { display: flex; flex-direction: column; gap: 20px; }
        .article-card { display: flex; gap: 15px; background: var(--bg-secondary); padding: 10px; border-radius: 8px; }
        .article-card img { width: 100px; height: 100px; border-radius: 6px; object-fit: cover; }
        .article-info h2 { font-size: 16px; margin-bottom: 5px; }
        .article-info p { font-size: 13px; color: var(--text-grey); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; text-align: center; }
        .payment-item { background: var(--bg-surface); padding: 15px 5px; border-radius: 8px; }
        .payment-item i { font-size: 24px; color: var(--gold-primary); margin-bottom: 8px; display: block; }
        .payment-item span { font-size: 10px; text-transform: uppercase; color: var(--text-grey); }

        .winner-list { background: var(--bg-secondary); border-radius: 12px; padding: 15px; }
        .winner-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #333; font-size: 13px; }
        .winner-item:last-child { border-bottom: none; }
        .win-amt { color: var(--gold-primary); font-weight: bold; }

        .provider-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
        .provider-item { background: #111; border: 1px solid #222; padding: 20px; text-align: center; font-weight: bold; color: var(--text-grey); border-radius: 8px; }

        .review-grid { display: flex; flex-direction: column; gap: 15px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; border-left: 4px solid var(--gold-primary); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 20px; color: var(--gold-primary); }
        .stars { color: #FFB703; font-size: 12px; }
        .review-text { font-size: 14px; font-style: italic; color: var(--text-grey); }

        .faq-section h2 { margin-bottom: 20px; text-align: center; }
        .faq-item { background: var(--bg-secondary); margin-bottom: 10px; border-radius: 8px; padding: 15px; }
        .faq-item h3 { font-size: 16px; margin-bottom: 10px; color: var(--gold-primary); }
        .faq-item p { font-size: 14px; color: var(--text-grey); }

        .responsible-gaming { text-align: center; background: #000; padding: 30px 15px; border-top: 1px solid #333; }
        .responsible-gaming i { font-size: 40px; color: var(--gold-primary); margin-bottom: 15px; }
        .responsible-gaming p { font-size: 14px; color: var(--text-grey); margin-bottom: 15px; }
        .age-badge { display: inline-block; border: 2px solid var(--red-secondary); color: var(--red-secondary); padding: 5px 10px; border-radius: 50%; font-weight: bold; margin-bottom: 15px; }

        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--bg-secondary); display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333; z-index: 1000; }
        .nav-item { text-align: center; font-size: 10px; color: var(--text-grey); flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 3px; color: var(--text-white); }

        footer { background: #050505; padding: 30px 15px 100px; border-top: 1px solid #222; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { font-size: 13px; color: var(--text-grey); }
        .footer-bottom { text-align: center; font-size: 12px; color: #555; border-top: 1px solid #222; padding-top: 20px; }