:root {
            --primary: #D4AF37;
            --primary-variant: #F9E076;
            --secondary: #008751;
            --accent: #E63946;
            --bg-main: #0D0D0D;
            --bg-surface: #1A1A1B;
            --bg-elevated: #252526;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --border-default: #2F3336;
            --border-highlight: #D4AF37;
            --radius-md: 12px;
            --radius-lg: 20px;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Roboto', sans-serif;
            line-height: 1.5;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--primary); }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        
        header {
            background: var(--bg-surface);
            padding: 12px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-default);
        }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--text-primary); }
        .header-right { display: flex; gap: 8px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--primary); color: var(--bg-main); }

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

        .jackpot-container {
            background: linear-gradient(135deg, var(--bg-elevated), #000);
            padding: 20px;
            border-radius: var(--radius-lg);
            text-align: center;
            border: 2px solid var(--primary);
            margin-bottom: 20px;
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
        }
        .jackpot-title { color: var(--text-primary); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { 
            font-family: 'Roboto Mono', monospace; 
            font-size: 32px; 
            font-weight: 900; 
            color: var(--primary-variant); 
            text-shadow: 0 0 10px rgba(249, 224, 118, 0.5);
            margin: 10px 0;
        }

        .intro-card { background: var(--bg-surface); padding: 20px; border-radius: var(--radius-md); margin-bottom: 20px; text-align: center; }
        .intro-card h1 { font-size: 1.5rem; margin-bottom: 12px; }
        .intro-card p { color: var(--text-secondary); font-size: 0.95rem; }

        .section-title { font-size: 1.25rem; margin: 25px 0 15px; display: flex; align-items: center; gap: 8px; }
        .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; }
        .game-card { background: var(--bg-surface); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border-default); transition: transform 0.2s; }
        .game-card:active { transform: scale(0.98); }
        .game-img-wrapper { width: 100%; aspect-ratio: 1/1; overflow: hidden; background: #222; }
        .game-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
        .game-info { padding: 8px; }
        .game-info h3 { font-size: 13px; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info span { font-size: 11px; color: var(--text-secondary); }

        .trust-section { background: var(--bg-surface); padding: 20px; border-radius: var(--radius-md); margin: 20px 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
        .trust-icon { font-size: 24px; color: var(--text-secondary); filter: grayscale(1); opacity: 0.7; }

        .guidelines { display: grid; grid-template-columns: 1fr; gap: 15px; margin: 20px 0; }
        .guide-item { background: var(--bg-surface); padding: 15px; border-radius: var(--radius-md); border-left: 3px solid var(--secondary); }
        .guide-item h2 { font-size: 1.1rem; margin-bottom: 8px; color: var(--text-primary); }
        .guide-item p { font-size: 0.9rem; color: var(--text-secondary); }

        .winners-marquee { background: var(--bg-elevated); padding: 10px 0; overflow: hidden; margin: 20px 0; border-radius: 5px; }
        .marquee-content { display: flex; animation: scroll 40s linear infinite; gap: 30px; white-space: nowrap; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .winner-tag { color: var(--text-secondary); font-size: 13px; }
        .winner-tag span { color: var(--primary); font-weight: bold; }

        .providers-wall { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; padding: 20px; background: var(--bg-surface); border-radius: var(--radius-md); }
        .provider-item { background: var(--bg-elevated); padding: 5px 12px; border-radius: 4px; font-size: 12px; font-weight: 600; color: var(--text-secondary); }

        .reviews-grid { display: flex; flex-direction: column; gap: 15px; margin: 20px 0; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: var(--radius-md); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-muted); }
        .review-meta h3 { font-size: 14px; color: var(--text-primary); }
        .stars { color: #FFC107; font-size: 12px; }
        .review-body { font-size: 0.9rem; color: var(--text-secondary); font-style: italic; }

        .faq-section { margin: 20px 0; }
        .faq-item { background: var(--bg-surface); padding: 15px; border-radius: var(--radius-md); margin-bottom: 10px; border-bottom: 1px solid var(--border-default); }
        .faq-item h2 { font-size: 1rem; margin-bottom: 10px; color: var(--primary); }
        .faq-item p { font-size: 0.9rem; color: var(--text-secondary); }

        .security-section { text-align: center; padding: 30px 15px; background: var(--bg-elevated); border-radius: var(--radius-md); }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 30px; color: var(--secondary); }
        .security-text { font-size: 12px; color: var(--text-secondary); }

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

        footer { background: var(--bg-surface); padding: 40px 20px 100px; border-top: 1px solid var(--border-default); text-align: center; }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
        .footer-social a { color: var(--text-secondary); font-size: 14px; border-bottom: 1px solid transparent; }
        .footer-social a:hover { border-bottom-color: var(--primary); }
        .footer-links { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 15px; margin-bottom: 30px; text-align: left; }
        .footer-links a { font-size: 13px; color: var(--text-secondary); display: block; margin-bottom: 8px; }
        .footer-copy { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-default); padding-top: 20px; }