:root {
            --primary: #FFD700;
            --primary-dark: #B8860B;
            --secondary: #E60012;
            --accent: #00FFC8;
            --bg-main: #0B0E11;
            --bg-surface: #181A20;
            --bg-surface-light: #2B2F36;
            --bg-overlay: rgba(0, 0, 0, 0.7);
            --text-primary: #FFFFFF;
            --text-secondary: #B7BDC6;
            --text-disabled: #5E6673;
            --text-inverse: #0B0E11;
            --success: #02C076;
            --warning: #F0B90B;
            --error: #CF304A;
            --info: #1E90FF;
            --border-subtle: #2F333A;
            --border-medium: #474D57;
            --border-strong: #FFD700;
            --font-heading: 'Montserrat', sans-serif;
            --font-body: 'Roboto', sans-serif;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { 
            background-color: var(--bg-main); 
            color: var(--text-primary); 
            font-family: var(--font-body); 
            line-height: 1.5; 
            overflow-x: hidden;
            padding-bottom: 70px;
        }

        header {
            background-color: var(--bg-surface);
            border-bottom: 1px solid var(--border-subtle);
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        header .brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
        header .brand img { width: 25px; height: 25px; border-radius: 4px; }
        header .brand strong { font-size: 16px; font-weight: normal; color: var(--primary); }
        header .auth-btns { display: flex; gap: 10px; }
        header .btn { 
            padding: 8px 16px; 
            border-radius: 4px; 
            cursor: pointer; 
            font-weight: 500; 
            font-size: 14px; 
            border: none; 
            transition: 0.3s; 
        }
        header .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-medium); }
        header .btn-register { background: var(--primary); color: var(--text-inverse); }
        header .btn:hover { opacity: 0.8; transform: translateY(-1px); }

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

        .jackpot-box {
            background: linear-gradient(135deg, #1e222d 0%, #0b0e11 100%);
            border: 2px solid var(--primary);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 25px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-title { color: var(--primary); font-family: var(--font-heading); font-size: 18px; text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount { 
            font-family: 'JetBrains Mono', monospace; 
            font-size: 36px; 
            font-weight: bold; 
            color: var(--accent); 
            text-shadow: 0 0 10px var(--accent);
        }

        .intro-card {
            background: var(--bg-surface);
            padding: 30px;
            border-radius: 15px;
            border-left: 5px solid var(--primary);
            margin-bottom: 30px;
        }
        .intro-card h1 { 
            font-family: var(--font-heading); 
            font-size: 24px; 
            color: var(--primary); 
            margin-bottom: 15px; 
            line-height: 1.3;
        }
        .intro-card p { color: var(--text-secondary); font-size: 16px; }

        .section-title { 
            font-family: var(--font-heading); 
            font-size: 22px; 
            color: var(--text-primary); 
            margin: 30px 0 20px; 
            display: flex; 
            align-items: center; 
            gap: 10px;
        }
        .section-title::before { content: ''; width: 4px; height: 22px; background: var(--primary); display: inline-block; border-radius: 2px; }

        .game-grid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 15px; 
            margin-bottom: 30px; 
        }
        .game-card { 
            background: var(--bg-surface); 
            border-radius: 12px; 
            text-decoration: none; 
            color: inherit; 
            overflow: hidden; 
            transition: 0.3s; 
            border: 1px solid var(--border-subtle);
        }
        .game-card:hover { transform: scale(1.03); border-color: var(--primary); }
        .game-card img { 
            width: 100%; 
            aspect-ratio: 1/1; 
            object-fit: cover; 
            display: block; 
        }
        .game-card h3 { 
            padding: 12px; 
            font-size: 15px; 
            text-align: center; 
            white-space: nowrap; 
            overflow: hidden; 
            text-overflow: ellipsis; 
            color: var(--text-primary);
        }

        .payment-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); 
            gap: 10px; 
            margin-bottom: 30px; 
        }
        .payment-item { 
            background: var(--bg-surface-light); 
            padding: 15px; 
            border-radius: 8px; 
            text-align: center; 
            font-size: 13px; 
            color: var(--text-secondary); 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            gap: 8px;
            border: 1px solid var(--border-subtle);
        }
        .payment-item i { font-size: 24px; color: var(--primary); }

        .guide-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); 
            gap: 20px; 
            margin-bottom: 30px; 
        }
        .guide-card { 
            background: var(--bg-surface); 
            padding: 20px; 
            border-radius: 12px; 
            border: 1px solid var(--border-subtle);
        }
        .guide-card h3 { color: var(--primary); margin-bottom: 10px; font-size: 18px; }
        .guide-card p { font-size: 14px; color: var(--text-secondary); }

        .win-table-container { 
            background: var(--bg-surface); 
            border-radius: 12px; 
            overflow: hidden; 
            margin-bottom: 30px; 
            border: 1px solid var(--border-subtle);
        }
        .win-table { width: 100%; border-collapse: collapse; text-align: left; }
        .win-table th { background: var(--bg-surface-light); color: var(--primary); padding: 12px; font-size: 14px; }
        .win-table td { padding: 12px; border-bottom: 1px solid var(--border-subtle); font-size: 13px; }
        .win-amount { color: var(--success); font-weight: bold; }

        .provider-wall { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 10px; 
            margin-bottom: 30px; 
        }
        .provider-block { 
            padding: 15px; 
            border-radius: 8px; 
            text-align: center; 
            font-weight: bold; 
            font-family: var(--font-heading);
        }
        .p-1 { background: #C0392B; color: white; } .p-2 { background: #2980B9; color: white; }
        .p-3 { background: #27AE60; color: white; } .p-4 { background: #F39C12; color: white; }
        .p-5 { background: #8E44AD; color: white; } .p-6 { background: #2C3E50; color: white; }
        .p-7 { background: #D35400; color: white; } .p-8 { background: #7F8C8D; color: white; }

        .review-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); 
            gap: 20px; 
            margin-bottom: 30px; 
        }
        .review-card { 
            background: var(--bg-surface); 
            padding: 20px; 
            border-radius: 12px; 
            border: 1px solid var(--border-subtle); 
            position: relative;
        }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--primary); }
        .review-header .user-name { font-weight: bold; }
        .review-stars { color: var(--warning); margin-bottom: 10px; font-size: 14px; }
        .review-body { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; }
        .review-date { font-size: 12px; color: var(--text-disabled); }

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

        .security-footer { 
            background: var(--bg-surface); 
            padding: 25px; 
            border-radius: 15px; 
            text-align: center; 
            border: 1px solid var(--border-subtle); 
            margin-bottom: 30px;
        }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; flex-wrap: wrap; }
        .security-icons div { display: flex; align-items: center; gap: 8px; color: var(--primary); font-size: 14px; font-weight: 500; }
        .security-footer p { color: var(--text-secondary); font-size: 13px; margin-bottom: 10px; }
        .security-footer a { color: var(--accent); text-decoration: none; }

        .navigator { 
            position: fixed; 
            bottom: 0; 
            left: 0; 
            right: 0; 
            background: var(--bg-surface); 
            border-top: 1px solid var(--border-subtle); 
            display: flex; 
            justify-content: space-around; 
            padding: 10px 0; 
            z-index: 1000; 
            box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
        }
        .nav-item { 
            text-decoration: none; 
            color: var(--text-secondary); 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            font-size: 11px; 
            gap: 4px; 
            flex: 1;
        }
        .nav-item i { font-size: 20px; }
        .nav-item:hover { color: var(--primary); }

        footer { 
            background: var(--bg-surface); 
            padding: 40px 20px; 
            border-top: 1px solid var(--border-subtle); 
            text-align: center; 
        }
        footer .contact-row { 
            display: flex; 
            justify-content: center; 
            gap: 20px; 
            margin-bottom: 30px; 
            flex-wrap: wrap; 
        }
        footer .contact-row a { color: var(--text-secondary); text-decoration: none; font-size: 14px; }
        footer .contact-row a:hover { color: var(--primary); }
        footer .links-grid { 
            display: grid; 
            grid-template-columns: repeat(3, 1fr); 
            gap: 10px; 
            max-width: 800px; 
            margin: 0 auto 30px; 
            text-align: center;
        }
        footer .links-grid a { 
            color: var(--text-secondary); 
            text-decoration: none; 
            font-size: 13px; 
            transition: 0.2s; 
        }
        footer .links-grid a:hover { color: var(--primary); }
        footer .copyright { color: var(--text-disabled); font-size: 12px; border-top: 1px solid var(--border-subtle); padding-top: 20px; }

        @media (max-width: 600px) {
            footer .links-grid { grid-template-columns: repeat(2, 1fr); }
            .jackpot-amount { font-size: 28px; }
            .intro-card h1 { font-size: 20px; }
        }