:root {
            --primary: #FFD700;
            --primary-dark: #C5A000;
            --secondary: #E60012;
            --accent: #00FF41;
            --main-bg: #0B0B0B;
            --surface-bg: #1A1A1A;
            --overlay-bg: #2C2C2C;
            --gradient-start: #1a1a1a;
            --gradient-end: #000000;
            --text-heading: #FFFFFF;
            --text-body: #B3B3B3;
            --text-muted: #666666;
            --text-inverse: #000000;
            --success: #28A745;
            --warning: #FFC107;
            --error: #DC3545;
            --info: #17A2B8;
            --border-default: #333333;
            --border-highlight: #FFD700;
            --border-subtle: #222222;
            --font-primary: 'Montserrat', sans-serif;
            --font-secondary: 'Roboto', sans-serif;
            --font-accent: 'Poppins', sans-serif;
        }

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

        header {
            background-color: var(--surface-bg);
            border-bottom: 2px solid var(--border-highlight);
            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-family: var(--font-primary); font-size: 16px; font-weight: normal; color: var(--text-heading); }
        header .auth-buttons { display: flex; gap: 10px; }
        .btn { 
            padding: 8px 16px; 
            border-radius: 6px; 
            cursor: pointer; 
            font-family: var(--font-accent); 
            font-weight: 600; 
            border: none; 
            transition: 0.3s; 
            text-decoration: none;
            font-size: 14px;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-login:hover { background: var(--primary); color: var(--text-inverse); }
        .btn-register { background: var(--primary); color: var(--text-inverse); }
        .btn-register:hover { background: var(--primary-dark); }

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

        .jackpot-box { 
            background: linear-gradient(45deg, var(--surface-bg), #2a2a2a); 
            border: 2px solid var(--primary); 
            border-radius: 15px; 
            text-align: center; 
            padding: 20px; 
            margin-bottom: 20px; 
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-title { color: var(--primary); font-family: var(--font-accent); font-weight: bold; margin-bottom: 10px; font-size: 18px; }
        .jackpot-amount { 
            font-family: var(--font-primary); 
            font-size: 32px; 
            font-weight: 900; 
            color: var(--text-heading); 
            text-shadow: 0 0 10px var(--primary);
        }

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

        h2 { 
            font-family: var(--font-primary); 
            color: var(--text-heading); 
            text-align: center; 
            margin: 40px 0 20px; 
            font-size: 24px; 
            position: relative; 
            padding-bottom: 10px;
        }
        h2::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background: var(--primary); }

        .game-grid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 15px; 
            margin-bottom: 30px; 
        }
        .game-card { 
            background: var(--surface-bg); 
            border-radius: 12px; 
            overflow: hidden; 
            text-decoration: none; 
            border: 1px solid var(--border-default); 
            transition: 0.3s; 
        }
        .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-card h3 { 
            padding: 12px; 
            font-size: 14px; 
            color: var(--text-heading); 
            text-align: center; 
            font-family: var(--font-accent);
            white-space: nowrap; 
            overflow: hidden; 
            text-overflow: ellipsis; 
        }

        .payment-grid { 
            display: grid; 
            grid-template-columns: repeat(4, 1fr); 
            gap: 10px; 
            margin-bottom: 30px; 
        }
        .payment-item { 
            background: var(--overlay-bg); 
            padding: 15px; 
            border-radius: 10px; 
            text-align: center; 
            font-size: 12px; 
            color: var(--text-heading); 
            border: 1px solid var(--border-subtle); 
        }
        .payment-item i { display: block; font-size: 20px; color: var(--primary); margin-bottom: 8px; }

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

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

        .providers-wall { 
            display: flex; 
            flex-wrap: wrap; 
            gap: 10px; 
            justify-content: center; 
            margin-bottom: 30px; 
        }
        .provider-tag { 
            background: var(--overlay-bg); 
            color: var(--text-heading); 
            padding: 10px 20px; 
            border-radius: 50px; 
            font-weight: bold; 
            border: 1px solid var(--primary);
            font-size: 14px;
        }

        .review-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
            gap: 20px; 
            margin-bottom: 30px; 
        }
        .review-card { background: var(--surface-bg); padding: 20px; border-radius: 12px; 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 .name { font-weight: bold; color: var(--text-heading); }
        .review-stars { color: var(--warning); font-size: 12px; margin-bottom: 10px; }
        .review-text { font-size: 14px; color: var(--text-body); margin-bottom: 10px; }
        .review-date { font-size: 12px; color: var(--text-muted); }

        .faq-section { margin-bottom: 30px; }
        .faq-item { background: var(--surface-bg); margin-bottom: 10px; border-radius: 8px; padding: 15px; border: 1px solid var(--border-default); }
        .faq-item h3 { font-size: 16px; color: var(--primary); margin-bottom: 10px; cursor: pointer; }
        .faq-item p { font-size: 14px; color: var(--text-body); line-height: 1.6; }

        .security-banner { 
            background: var(--overlay-bg); 
            padding: 25px; 
            border-radius: 15px; 
            text-align: center; 
            border: 1px dashed var(--primary); 
            margin-bottom: 30px;
        }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; }
        .security-icons i { font-size: 30px; color: var(--accent); }
        .security-text { font-size: 14px; color: var(--text-body); }
        .security-text a { color: var(--primary); text-decoration: underline; }

        .navigator { 
            position: fixed; 
            bottom: 20px; 
            left: 50%; 
            transform: translateX(-50%); 
            background: rgba(26, 26, 26, 0.95); 
            backdrop-filter: blur(10px); 
            width: 90%; 
            max-width: 500px; 
            border-radius: 50px; 
            display: flex; 
            justify-content: space-around; 
            padding: 10px; 
            border: 1px solid var(--primary); 
            z-index: 2000; 
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
        }
        .nav-item { 
            text-decoration: none; 
            color: var(--text-body); 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            font-size: 11px; 
            gap: 5px; 
            transition: 0.3s;
        }
        .nav-item i { font-size: 18px; }
        .nav-item:hover { color: var(--primary); }

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

        @media (max-width: 600px) {
            .payment-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-links { grid-template-columns: repeat(2, 1fr); }
        }