:root {
            --primary: #FFD700;
            --primary-variant: #B8860B;
            --secondary: #C0C0C0;
            --accent: #FF4500;
            --bg-main: #0F0F0F;
            --bg-surface: #1A1A1A;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --bg-contrast: #262626;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #757575;
            --text-inverse: #000000;
            --success: #00C853;
            --warning: #FFEA00;
            --error: #FF1744;
            --info: #2979FF;
            --border-default: #333333;
            --border-highlight: #FFD700;
            --border-subtle: #222222;
            --font-heading: 'Montserrat', sans-serif;
            --font-body: 'Roboto', sans-serif;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { 
            background-color: var(--bg-main); 
            color: var(--text-primary); 
            font-family: var(--font-body); 
            line-height: 1.5; 
            overflow-x: hidden;
            padding-bottom: 80px;
        }
        h1, h2, h3 { font-family: var(--font-heading); color: var(--primary); }
        a { text-decoration: none; color: inherit; transition: 0.3s; }

        header {
            background-color: var(--bg-surface);
            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 .logo-group { display: flex; align-items: center; gap: 10px; }
        header img { width: 25px; height: 25px; }
        header strong { font-size: 16px; font-weight: normal; }
        header .auth-buttons { display: flex; gap: 10px; }
        .btn { 
            padding: 8px 16px; 
            border-radius: 5px; 
            cursor: pointer; 
            font-weight: 600; 
            border: none; 
            transition: 0.3s; 
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-login:hover { background: var(--primary); color: var(--text-inverse); }
        .btn-reg { background: var(--primary); color: var(--text-inverse); }
        .btn-reg:hover { background: var(--primary-variant); }

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

        .jackpot-section { 
            background: linear-gradient(45deg, #000, #1a1a1a); 
            text-align: center; 
            padding: 30px; 
            border-radius: 15px; 
            border: 2px solid var(--primary); 
            margin-bottom: 30px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-label { font-size: 1.2rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { 
            font-size: 3rem; 
            font-weight: bold; 
            color: var(--primary); 
            display: block; 
            margin: 10px 0;
            font-family: 'JetBrains Mono', monospace;
            text-shadow: 0 0 10px var(--primary);
        }

        .intro-card { 
            background: var(--bg-surface); 
            padding: 30px; 
            border-radius: 15px; 
            text-align: center; 
            margin-bottom: 40px;
            border-left: 5px solid var(--primary);
        }
        .intro-card h1 { font-size: 2rem; margin-bottom: 15px; }
        .intro-card p { color: var(--text-secondary); font-size: 1.1rem; }

        .section-title { text-align: center; margin-bottom: 25px; font-size: 1.8rem; 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); }

        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 40px; }
        .game-card { 
            background: var(--bg-surface); 
            border-radius: 12px; 
            overflow: hidden; 
            border: 1px solid var(--border-default); 
            transition: 0.3s; 
            text-align: center;
            padding-bottom: 15px;
        }
        .game-card:hover { transform: translateY(-5px); border-color: var(--primary); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { font-size: 1rem; margin: 12px 5px; color: var(--text-primary); height: 2.4em; overflow: hidden; }

        .payment-license { 
            display: flex; 
            flex-wrap: wrap; 
            justify-content: center; 
            gap: 15px; 
            background: var(--bg-surface); 
            padding: 20px; 
            border-radius: 15px; 
            margin-bottom: 40px; 
        }
        .pay-item { 
            display: flex; 
            align-items: center; 
            gap: 8px; 
            background: var(--bg-contrast); 
            padding: 10px 15px; 
            border-radius: 8px; 
            font-size: 0.9rem; 
            color: var(--text-secondary);
            border: 1px solid var(--border-subtle);
        }
        .pay-item i { 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: 12px; border: 1px solid var(--border-default); }
        .guide-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
        .guide-card p { color: var(--text-secondary); font-size: 0.9rem; }

        .winner-list { background: var(--bg-surface); border-radius: 15px; padding: 20px; margin-bottom: 40px; border: 1px solid var(--border-default); }
        .winner-row { 
            display: grid; 
            grid-template-columns: 1fr 1fr 1fr 1fr; 
            padding: 12px 0; 
            border-bottom: 1px solid var(--border-subtle); 
            font-size: 0.9rem; 
            text-align: center;
        }
        .winner-row:last-child { border-bottom: none; }
        .winner-row span:nth-child(3) { color: var(--success); font-weight: bold; }

        .provider-wall { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 10px; 
            margin-bottom: 40px; 
        }
        .provider-block { 
            background: var(--bg-contrast); 
            padding: 20px; 
            border-radius: 10px; 
            text-align: center; 
            font-weight: bold; 
            color: var(--primary); 
            border: 1px solid var(--border-default);
        }

        .comment-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-bottom: 40px; }
        .comment-card { background: var(--bg-surface); padding: 20px; border-radius: 15px; border: 1px solid var(--border-default); }
        .comment-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
        .comment-header i { font-size: 2rem; color: var(--secondary); }
        .comment-user { font-weight: bold; }
        .comment-stars { color: var(--primary); font-size: 0.8rem; margin-bottom: 10px; }
        .comment-text { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 10px; }
        .comment-date { font-size: 0.8rem; color: var(--text-muted); }

        .faq-section { margin-bottom: 40px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 10px; border: 1px solid var(--border-default); }
        .faq-q { padding: 15px 20px; cursor: pointer; font-weight: bold; display: flex; justify-content: space-between; align-items: center; }
        .faq-a { padding: 0 20px 15px 20px; color: var(--text-secondary); font-size: 0.9rem; }

        .security-footer { 
            background: var(--bg-surface); 
            padding: 30px; 
            border-radius: 15px; 
            text-align: center; 
            margin-bottom: 40px; 
            border: 1px dashed var(--primary);
        }
        .security-badges { display: flex; justify-content: center; gap: 30px; margin-bottom: 20px; flex-wrap: wrap; }
        .badge { display: flex; align-items: center; gap: 10px; color: var(--text-secondary); font-weight: 500; }
        .badge i { color: var(--success); font-size: 1.5rem; }

        .navigator { 
            position: fixed; 
            bottom: 0; 
            left: 0; 
            right: 0; 
            background: var(--bg-surface); 
            display: flex; 
            justify-content: space-around; 
            padding: 12px 0; 
            border-top: 2px solid var(--primary); 
            z-index: 2000; 
        }
        .nav-item { text-align: center; color: var(--text-secondary); font-size: 0.7rem; flex: 1; }
        .nav-item i { display: block; font-size: 1.2rem; margin-bottom: 4px; }
        .nav-item:hover { color: var(--primary); }

        footer { 
            background: var(--bg-surface); 
            padding: 40px 20px; 
            text-align: center; 
            border-top: 1px solid var(--border-default); 
        }
        .footer-contact { margin-bottom: 30px; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
        .footer-links { 
            display: grid; 
            grid-template-columns: repeat(3, 1fr); 
            gap: 10px; 
            max-width: 800px; 
            margin: 0 auto 30px auto; 
            text-align: left; 
        }
        .footer-links a { color: var(--text-secondary); font-size: 0.85rem; }
        .footer-links a:hover { color: var(--primary); }
        .copyright { color: var(--text-muted); font-size: 0.8rem; border-top: 1px solid var(--border-subtle); padding-top: 20px; }

        @media (max-width: 768px) {
            .game-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-links { grid-template-columns: repeat(3, 1fr); }
            .jackpot-amount { font-size: 2rem; }
            .winner-row { font-size: 0.75rem; }
        }