:root {
            --primary: #D4AF37;
            --primary-hover: #F1D592;
            --primary-active: #996515;
            --secondary: #00875A;
            --secondary-variant: #005F3F;
            --accent: #C62828;
            --bg-default: #0B0E11;
            --bg-paper: #181A20;
            --bg-elevated: #1E2329;
            --text-primary: #FFFFFF;
            --text-secondary: #B7BDC6;
            --text-brand: #D4AF37;
            --success: #0ECB81;
            --error: #F6465D;
            --border-default: #2B3139;
            --font-headings: 'Montserrat', 'Open Sans', Arial, sans-serif;
            --font-body: 'Inter', 'Roboto', Helvetica, sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-default);
            color: var(--text-primary);
            font-family: var(--font-body);
            line-height: 1.5;
            padding-bottom: 70px;
        }
        header {
            background-color: var(--bg-paper);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            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; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--primary); }
        .header-right { display: flex; gap: 8px; }
        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        .btn-login { background-color: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background-color: var(--primary); color: #000; }
        .btn-register:hover { background-color: var(--primary-hover); }
        
        main { max-width: 1000px; margin: 0 auto; padding: 10px; }
        .banner { width: 100%; aspect-ratio: 2 / 1; border-radius: 12px; overflow: hidden; margin-bottom: 20px; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        
        .jackpot-container {
            background: linear-gradient(145deg, var(--bg-paper), var(--bg-elevated));
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--primary);
            margin-bottom: 20px;
        }
        .jackpot-title { color: var(--primary); font-family: var(--font-headings); font-size: 18px; text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: var(--success); font-family: 'JetBrains Mono', monospace; }

        .platform-intro { background: var(--bg-paper); padding: 20px; border-radius: 12px; margin-bottom: 20px; border-left: 4px solid var(--primary); }
        h1 { font-family: var(--font-headings); font-size: 24px; margin-bottom: 10px; color: var(--primary); }
        .platform-intro p { color: var(--text-secondary); font-size: 15px; }

        h2 { font-family: var(--font-headings); font-size: 20px; margin: 25px 0 15px; display: flex; align-items: center; gap: 10px; }
        h2::before { content: ""; width: 4px; height: 20px; background: var(--primary); display: inline-block; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .game-card { background: var(--bg-paper); border-radius: 10px; overflow: hidden; text-decoration: none; transition: transform 0.2s; border: 1px solid var(--border-default); }
        .game-card:hover { transform: translateY(-5px); border-color: var(--primary); }
        .game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        h3 { font-size: 14px; color: var(--text-primary); margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 12px; color: var(--text-secondary); }

        .trust-section { background: var(--bg-paper); padding: 20px; border-radius: 12px; margin: 20px 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; opacity: 0.8; }
        .trust-item { text-align: center; width: 60px; }
        .trust-item i { font-size: 24px; color: var(--text-secondary); }

        .guidelines { display: grid; grid-template-columns: 1fr; gap: 15px; margin: 20px 0; }
        .guide-card { background: var(--bg-paper); padding: 15px; border-radius: 10px; border: 1px solid var(--border-default); }
        .guide-card h3 { font-size: 16px; color: var(--primary); margin-bottom: 8px; }
        .guide-card p { font-size: 14px; color: var(--text-secondary); }

        .marquee-container { background: var(--bg-elevated); padding: 10px 0; overflow: hidden; margin: 20px 0; position: relative; }
        .marquee-content { display: flex; animation: marquee 30s linear infinite; }
        .winner-tag { white-space: nowrap; padding: 0 30px; font-size: 13px; color: var(--text-secondary); border-right: 1px solid var(--border-default); }
        .winner-tag span { color: var(--success); font-weight: bold; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        .providers-wall { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; padding: 15px; background: var(--bg-paper); border-radius: 12px; }
        .provider-name { padding: 5px 12px; background: var(--bg-elevated); border-radius: 20px; font-size: 12px; color: var(--text-secondary); border: 1px solid var(--border-default); }

        .reviews-container { display: grid; grid-template-columns: 1fr; gap: 15px; margin: 20px 0; }
        .review-card { background: var(--bg-paper); padding: 15px; border-radius: 12px; border: 1px solid var(--border-default); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-brand); }
        .review-meta h4 { font-size: 14px; }
        .stars { color: #F0B90B; font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-secondary); }

        .faq-section { margin: 20px 0; }
        .faq-item { background: var(--bg-paper); margin-bottom: 10px; border-radius: 8px; padding: 15px; border: 1px solid var(--border-default); }
        .faq-item h3 { color: var(--primary); margin-bottom: 8px; font-size: 15px; white-space: normal; }
        .faq-item p { color: var(--text-secondary); font-size: 14px; }

        .security-section { background: var(--bg-elevated); padding: 20px; border-radius: 12px; text-align: center; margin: 20px 0; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--success); }
        .age-limit { display: inline-block; padding: 5px 10px; border: 2px solid var(--accent); color: var(--accent); border-radius: 50%; font-weight: bold; margin-bottom: 10px; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 65px;
            background: var(--bg-paper);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
        }
        .nav-item { text-align: center; text-decoration: none; color: var(--text-secondary); font-size: 12px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item:active { color: var(--primary); }

        footer { background: var(--bg-paper); padding: 30px 15px 100px; border-top: 1px solid var(--border-default); text-align: center; }
        .footer-contact { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .footer-contact a { color: var(--text-secondary); text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; text-align: left; }
        .footer-copy { font-size: 12px; color: var(--text-disabled); margin-top: 20px; border-top: 1px solid var(--border-default); padding-top: 20px; }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .guidelines, .reviews-container { grid-template-columns: repeat(2, 1fr); }
            .footer-links { grid-template-columns: repeat(5, 1fr); }
        }