:root {
            --primary: #FFD700;
            --primary-hover: #FFB800;
            --secondary: #C0C0C0;
            --accent: #FF0000;
            --bg-main: #1A1A1A;
            --bg-surface: #2A2A2A;
            --bg-variant: #333333;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-disabled: #666666;
            --text-highlight: #FFD700;
            --success: #4CAF50;
            --warning: #FFC107;
            --error: #F44336;
            --info: #2196F3;
            --border-default: #404040;
            --border-highlight: #FFD700;
            --font-primary: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            --font-heading: 'Montserrat', 'Arial', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: var(--bg-main); color: var(--text-primary); font-family: var(--font-primary); line-height: 1.5; overflow-x: hidden; }
        h1, h2, h3 { font-family: var(--font-heading); line-height: 1.2; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        .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-block; text-align: center; }
        .btn-primary { background: var(--primary); color: #000; padding: 10px 20px; }
        .btn-primary:hover { background: var(--primary-hover); }
        .card { background: var(--bg-surface); border-radius: 15px; border: 1px solid var(--border-default); padding: 20px; margin-bottom: 20px; }
        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-default); }
        header .container { width: 100%; display: flex; justify-content: space-between; align-items: center; }
        header .logo-area { display: flex; align-items: center; gap: 10px; }
        header img { width: 25px; height: 25px; border-radius: 50%; }
        header strong { font-size: 16px; font-weight: normal; }
        header .auth-btns { display: flex; gap: 10px; }
        .banner-wrap { width: 100%; aspect-ratio: 4/3; overflow: hidden; cursor: pointer; margin-bottom: 20px; }
        .banner-wrap img { width: 100%; height: 100%; object-fit: cover; }
        .promo-section { text-align: center; padding: 30px 20px; background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%); border: 2px solid var(--primary); border-radius: 20px; margin-bottom: 30px; }
        .promo-section h2 { font-size: 32px; color: var(--primary); margin-bottom: 15px; }
        .promo-section p { font-size: 18px; color: var(--text-secondary); margin-bottom: 20px; }
        .promo-section .btn-big { background: var(--primary); color: #000; padding: 15px 40px; font-size: 20px; border-radius: 50px; text-transform: uppercase; }
        .section-title { font-size: 24px; margin-bottom: 20px; text-align: center; color: var(--text-highlight); position: relative; }
        .section-title::after { content: ''; display: block; width: 50px; height: 3px; background: var(--primary); margin: 10px auto; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-bottom: 30px; }
        .game-card { background: var(--bg-variant); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-default); transition: 0.3s; }
        .game-card:hover { border-color: var(--primary); transform: translateY(-5px); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { font-size: 14px; padding: 10px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { text-align: center; padding: 40px 20px; background: var(--bg-surface); border: 1px solid var(--border-highlight); }
        .intro-card h1 { font-size: 40px; color: var(--primary); margin-bottom: 15px; text-transform: uppercase; }
        .intro-card p { color: var(--text-secondary); max-width: 800px; margin: 0 auto; font-size: 16px; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 30px; }
        .payment-item { background: var(--bg-variant); padding: 15px; border-radius: 10px; text-align: center; border: 1px solid var(--border-default); }
        .payment-item i { display: block; font-size: 24px; color: var(--primary); margin-bottom: 8px; }
        .payment-item span { font-size: 12px; color: var(--text-secondary); }
        .guide-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-bottom: 30px; }
        .guide-card { background: var(--bg-surface); padding: 20px; border-radius: 12px; border-left: 4px solid var(--primary); }
        .guide-card h3 { font-size: 18px; margin-bottom: 10px; color: var(--primary); }
        .guide-card p { font-size: 14px; color: var(--text-secondary); }
        .comment-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-bottom: 30px; }
        .comment-card { background: var(--bg-variant); padding: 20px; border-radius: 15px; position: relative; }
        .comment-header { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; }
        .comment-header i { font-size: 30px; color: var(--secondary); }
        .comment-user { font-weight: 600; font-size: 15px; }
        .comment-stars { color: var(--primary); font-size: 13px; margin-bottom: 10px; }
        .comment-text { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; }
        .comment-date { font-size: 12px; color: var(--text-disabled); text-align: right; }
        .win-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 30px; }
        .win-item { display: flex; justify-content: space-between; align-items: center; padding: 12px 20px; background: var(--bg-surface); border-radius: 8px; border: 1px solid var(--border-default); }
        .win-user { font-weight: 500; }
        .win-game { color: var(--text-secondary); font-size: 13px; }
        .win-amount { color: var(--primary); font-weight: 700; }
        .win-time { font-size: 12px; color: var(--text-disabled); }
        .provider-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-bottom: 30px; }
        .provider-item { background: var(--bg-variant); padding: 20px; text-align: center; border-radius: 10px; font-weight: 600; color: var(--primary); border: 1px solid var(--border-default); }
        .faq-grid { display: grid; gap: 15px; margin-bottom: 30px; }
        .faq-item { background: var(--bg-surface); border-radius: 10px; border: 1px solid var(--border-default); overflow: hidden; }
        .faq-q { padding: 15px 20px; cursor: pointer; font-weight: 600; display: flex; justify-content: space-between; background: var(--bg-variant); }
        .faq-a { padding: 15px 20px; color: var(--text-secondary); font-size: 14px; line-height: 1.6; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg-surface); display: flex; justify-content: space-around; align-items: center; height: 65px; border-top: 1px solid var(--border-default); z-index: 2000; padding-bottom: 10px; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 5px; color: var(--text-secondary); font-size: 11px; }
        .nav-item i { font-size: 20px; color: var(--text-primary); }
        footer { background: var(--bg-surface); padding: 40px 0 80px; border-top: 1px solid var(--border-default); }
        footer .contact-wrap { text-align: center; margin-bottom: 30px; }
        footer .contact-links { display: flex; justify-content: center; gap: 20px; margin-top: 10px; flex-wrap: wrap; }
        footer .contact-links a { color: var(--text-secondary); font-size: 14px; transition: 0.3s; }
        footer .contact-links a:hover { color: var(--primary); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 30px; }
        .footer-links a { display: block; color: var(--text-secondary); font-size: 13px; margin-bottom: 8px; }
        .security-section { text-align: center; border-top: 1px solid var(--border-default); padding-top: 20px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; }
        .security-icons i { font-size: 30px; color: var(--primary); }
        .security-text { font-size: 12px; color: var(--text-disabled); line-height: 1.8; }
        @media (max-width: 768px) {
            .payment-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-links { grid-template-columns: repeat(2, 1fr); }
        }