:root {
            --primary: #FFD700;
            --primary-hover: #FFB800;
            --secondary: #C0C0C0;
            --accent: #FF0000;
            --bg-main: #0F0F0F;
            --bg-surface: #1A1A1A;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --grad-start: #1A1A1A;
            --grad-end: #000000;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-disabled: #666666;
            --text-highlight: #FFD700;
            --success: #00C851;
            --warning: #FFBB00;
            --error: #FF4444;
            --info: #33B5E5;
            --border-light: #333333;
            --border-medium: #444444;
            --border-gold: #B8860B;
            --font-heading: 'Montserrat', sans-serif;
            --font-body: 'Roboto', sans-serif;
            --font-accent: 'Playfair Display', serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
        body { background-color: var(--bg-main); color: var(--text-primary); font-family: var(--font-body); line-height: 1.5; overflow-x: hidden; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        .btn { cursor: pointer; border: none; border-radius: 8px; font-weight: 600; transition: 0.3s; display: inline-flex; align-items: center; justify-content: center; }
        .btn-primary { background: linear-gradient(135deg, var(--primary), var(--border-gold)); color: #000; }
        .btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); }
        .btn-outline { background: transparent; border: 1px solid var(--primary); color: var(--primary); }
        .btn-outline:hover { background: var(--primary); color: #000; }
        .section-title { font-family: var(--font-heading); font-size: 24px; color: var(--primary); text-align: center; margin-bottom: 25px; position: relative; padding-bottom: 10px; }
        .section-title::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background: var(--primary); }
        
        header { background: var(--bg-surface); height: 60px; display: flex; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid var(--border-gold); }
        header .container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
        header .logo-area { display: flex; align-items: center; gap: 10px; }
        header .logo-area img { width: 25px; height: 25px; }
        header .logo-area strong { font-size: 16px; font-weight: normal; color: var(--text-primary); }
        header .auth-btns { display: flex; gap: 10px; }
        header .auth-btns .btn { padding: 6px 15px; font-size: 14px; }

        .hero-banner { position: relative; width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-box { background: linear-gradient(to bottom, #222, #000); border: 2px solid var(--border-gold); border-radius: 15px; padding: 20px; text-align: center; margin: -30px auto 30px; position: relative; z-index: 10; max-width: 600px; box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
        .jackpot-label { font-family: var(--font-heading); color: var(--secondary); font-size: 18px; letter-spacing: 2px; text-transform: uppercase; }
        .jackpot-value { font-family: var(--font-accent); font-size: 40px; color: var(--primary); font-weight: 800; margin: 10px 0; text-shadow: 0 0 10px var(--primary); }

        .intro-card { background: var(--bg-surface); border-radius: 20px; padding: 30px; border: 1px solid var(--border-light); margin-bottom: 40px; text-align: center; }
        .intro-card h1 { font-family: var(--font-heading); font-size: 28px; color: var(--primary); margin-bottom: 15px; line-height: 1.2; }
        .intro-card p { color: var(--text-secondary); font-size: 16px; max-width: 800px; margin: 0 auto; }

        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-bottom: 40px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-light); transition: 0.3s; position: relative; }
        .game-card:hover { border-color: var(--primary); transform: scale(1.02); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { padding: 12px; font-size: 15px; text-align: center; color: var(--text-primary); font-family: var(--font-heading); }

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

        .guide-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-bottom: 40px; }
        .guide-card { background: var(--bg-surface); padding: 20px; border-radius: 15px; border-left: 4px solid var(--primary); }
        .guide-card h3 { font-family: var(--font-heading); font-size: 18px; margin-bottom: 10px; color: var(--primary); }
        .guide-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

        .win-records { background: var(--bg-surface); border-radius: 15px; overflow: hidden; margin-bottom: 40px; border: 1px solid var(--border-medium); }
        .win-table { width: 100%; border-collapse: collapse; text-align: left; }
        .win-table th { background: #252525; padding: 15px; color: var(--primary); font-family: var(--font-heading); font-size: 14px; }
        .win-table td { padding: 12px 15px; border-bottom: 1px solid var(--border-light); font-size: 14px; color: var(--text-secondary); }
        .win-table td:nth-child(3) { color: var(--success); font-weight: bold; }

        .provider-wall { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-bottom: 40px; }
        .provider-item { padding: 20px; border-radius: 10px; font-weight: bold; text-align: center; font-family: var(--font-heading); color: #000; }
        .p-gold { background: var(--primary); }
        .p-silver { background: var(--secondary); }

        .review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-bottom: 40px; }
        .review-card { background: var(--bg-surface); padding: 20px; border-radius: 15px; border: 1px solid var(--border-light); }
        .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; }
        .review-header i { font-size: 30px; color: var(--primary); }
        .review-header .user-info h4 { font-size: 16px; }
        .review-stars { color: var(--primary); font-size: 12px; margin-bottom: 10px; }
        .review-content { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; line-height: 1.5; }
        .review-date { font-size: 12px; color: var(--text-disabled); }

        .faq-section { margin-bottom: 40px; }
        .faq-item { background: var(--bg-surface); border: 1px solid var(--border-light); border-radius: 10px; margin-bottom: 10px; padding: 20px; }
        .faq-item h3 { font-size: 17px; color: var(--primary); margin-bottom: 10px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

        .security-box { background: linear-gradient(var(--grad-start), var(--grad-end)); border: 1px solid var(--border-gold); border-radius: 20px; padding: 30px; text-align: center; margin-bottom: 60px; }
        .security-icons { display: flex; justify-content: center; gap: 30px; margin-bottom: 20px; flex-wrap: wrap; }
        .sec-icon { display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--secondary); font-size: 13px; }
        .sec-icon i { font-size: 32px; color: var(--primary); }
        .security-text { font-size: 14px; color: var(--text-secondary); max-width: 700px; margin: 0 auto 15px; }
        .security-link { color: var(--primary); text-decoration: underline; font-size: 14px; }

        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: rgba(26, 26, 26, 0.95); backdrop-filter: blur(10px); border-top: 1px solid var(--border-gold); display: flex; justify-content: space-around; padding: 10px 0; z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: var(--text-secondary); transition: 0.3s; }
        .nav-item i { font-size: 20px; }
        .nav-item:hover { color: var(--primary); }

        footer { background: #050505; padding: 40px 0 100px; border-top: 1px solid var(--border-light); text-align: center; }
        footer .contact-area { margin-bottom: 30px; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
        footer .contact-area a { color: var(--text-secondary); font-size: 14px; padding: 5px 15px; border: 1px solid var(--border-light); border-radius: 20px; }
        footer .contact-area a:hover { border-color: var(--primary); color: var(--primary); }
        footer .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; max-width: 600px; margin: 0 auto 30px; text-align: center; }
        footer .footer-links a { font-size: 13px; color: var(--text-secondary); }
        footer .footer-links a:hover { color: var(--primary); }
        footer .copyright { font-size: 13px; color: var(--text-disabled); }

        @media (max-width: 768px) {
            .payment-methods { grid-template-columns: repeat(2, 1fr); }
            .footer-links { grid-template-columns: repeat(3, 1fr); }
            .intro-card h1 { font-size: 22px; }
            .jackpot-value { font-size: 30px; }
        }