:root {
            --primary: #D4AF37;
            --secondary: #B8860B;
            --accent: #FFD700;
            --gold-gradient: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --bg-main: #0A0A0A;
            --bg-card: #161616;
            --bg-tertiary: #1F1F1F;
            --text-main: #FFFFFF;
            --text-secondary: #B0B0B0;
            --border: #2A2A2A;
            --success: #00C853;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }

        body {
            background-color: var(--bg-main);
            color: var(--text-main);
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            line-height: 1.5;
            padding-bottom: 70px;
        }

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

        header {
            background: var(--bg-card);
            padding: 12px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border);
        }

        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--primary); }

        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            text-decoration: none;
        }
        .btn-login { background: transparent; color: var(--text-main); border: 1px solid var(--border); }
        .btn-reg { background: var(--gold-gradient); color: #000; }

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

        main { padding: 15px; max-width: 800px; margin: 0 auto; }

        .jackpot-container {
            background: #000;
            border: 2px solid var(--secondary);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin: 20px 0;
            position: relative;
            overflow: hidden;
        }
        .jackpot-label { color: var(--accent); font-size: 14px; font-weight: bold; text-transform: uppercase; margin-bottom: 5px; }
        .jackpot-amount { 
            font-size: 32px; 
            font-weight: 800; 
            color: #fff; 
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); 
            font-family: 'Montserrat', sans-serif;
        }

        .intro-card {
            background: var(--bg-card);
            padding: 20px;
            border-radius: 15px;
            margin-bottom: 25px;
            border: 1px solid var(--border);
        }
        .intro-card h1 { font-size: 20px; color: var(--primary); margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); }

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

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .game-card { 
            background: var(--bg-card); 
            border-radius: 12px; 
            overflow: hidden; 
            text-decoration: none; 
            border: 1px solid var(--border);
            transition: transform 0.2s;
        }
        .game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
        .game-card h3 { padding: 10px; font-size: 13px; color: var(--text-main); text-align: center; }

        .payment-section { 
            display: grid; 
            grid-template-columns: repeat(4, 1fr); 
            gap: 15px; 
            background: var(--bg-tertiary); 
            padding: 20px; 
            border-radius: 15px; 
            margin: 25px 0;
        }
        .payment-item { text-align: center; }
        .payment-item i { font-size: 24px; color: var(--primary); margin-bottom: 5px; }
        .payment-item span { display: block; font-size: 10px; color: var(--text-secondary); }

        .guides-grid { display: grid; grid-template-columns: 1fr; gap: 15px; }
        .guide-card { background: var(--bg-card); padding: 15px; border-radius: 12px; border-left: 3px solid var(--primary); }
        .guide-card h3 { font-size: 16px; margin-bottom: 8px; color: var(--accent); }
        .guide-card p { font-size: 13px; color: var(--text-secondary); }

        .win-records { background: var(--bg-card); border-radius: 15px; padding: 10px; border: 1px solid var(--border); }
        .win-item { 
            display: flex; 
            justify-content: space-between; 
            padding: 10px; 
            border-bottom: 1px solid var(--border); 
            font-size: 12px; 
        }
        .win-user { color: var(--primary); font-weight: 600; }
        .win-amount { color: var(--success); font-weight: bold; }

        .provider-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px 0; }
        .provider-tag { 
            background: var(--bg-tertiary); 
            color: var(--text-main); 
            padding: 12px; 
            text-align: center; 
            border-radius: 8px; 
            font-size: 14px; 
            font-weight: 600;
            border: 1px solid var(--border);
        }

        .review-card { background: var(--bg-card); padding: 15px; border-radius: 15px; margin-bottom: 15px; border: 1px solid var(--border); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-secondary); }
        .review-info h3 { font-size: 14px; }
        .stars { color: var(--accent); font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-secondary); font-style: italic; }
        .review-date { font-size: 10px; color: #555; margin-top: 5px; text-align: right; }

        .faq-section { margin-top: 30px; }
        .faq-item { background: var(--bg-card); border-radius: 10px; margin-bottom: 10px; padding: 15px; border: 1px solid var(--border); }
        .faq-item h3 { font-size: 14px; color: var(--primary); margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: var(--text-secondary); }

        .security-section { background: #000; padding: 20px; border-radius: 15px; border: 1px dashed var(--secondary); text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--primary); }
        .security-section p { font-size: 12px; color: var(--text-secondary); margin-bottom: 10px; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--bg-card);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border);
            z-index: 1001;
        }
        .nav-item { text-align: center; text-decoration: none; color: var(--text-secondary); flex: 1; }
        .nav-item i { font-size: 20px; display: block; margin-bottom: 4px; }
        .nav-item span { font-size: 11px; font-weight: 500; }

        footer { background: var(--bg-card); padding: 30px 15px 100px; border-top: 1px solid var(--border); text-align: center; }
        .footer-contacts { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; flex-wrap: wrap; }
        .footer-contacts a { color: var(--primary); 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: 12px; }
        .copyright { font-size: 11px; color: #555; border-top: 1px solid var(--border); padding-top: 20px; }

        @media (min-width: 600px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .guides-grid { grid-template-columns: 1fr 1fr; }
        }