:root {
            --brand-primary: #FFD700;
            --brand-primary-hover: #FFC400;
            --brand-secondary: #C0C0C0;
            --brand-accent: #FF0000;
            --bg-main: #0F0F0F;
            --bg-surface: #1A1A1A;
            --bg-card: #262626;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --text-heading: #FFFFFF;
            --text-body: #E0E0E0;
            --text-muted: #888888;
            --text-inverse: #000000;
            --color-success: #4CAF50;
            --color-warning: #FF9800;
            --color-error: #F44336;
            --color-info: #2196F3;
            --border-light: #333333;
            --border-medium: #444444;
            --border-strong: #FFD700;
            --font-primary: 'Roboto', sans-serif;
            --font-heading: 'Montserrat', sans-serif;
            --font-accent: 'Oswald', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: var(--bg-main); color: var(--text-body); font-family: var(--font-primary); line-height: 1.5; overflow-x: hidden; }
        h1, h2, h3 { font-family: var(--font-heading); color: var(--text-heading); text-align: center; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        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(--brand-primary); color: var(--text-inverse); padding: 10px 20px; font-family: var(--font-accent); }
        .btn-primary:hover { background: var(--brand-primary-hover); transform: scale(1.05); }
        header { background: var(--bg-surface); border-bottom: 2px solid var(--border-medium); padding: 10px 0; position: sticky; top: 0; z-index: 1000; }
        header .container { display: flex; justify-content: space-between; align-items: center; }
        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; }
        header .auth-btns { display: flex; gap: 10px; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .promo-card { background: linear-gradient(135deg, var(--bg-surface), var(--bg-card)); border: 1px solid var(--border-strong); border-radius: 15px; padding: 30px; text-align: center; margin: 20px 0; }
        .promo-card h2 { margin-bottom: 15px; color: var(--brand-primary); }
        .promo-card p { margin-bottom: 20px; font-size: 18px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin: 20px 0; }
        .game-card { background: var(--bg-card); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-light); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { font-size: 14px; padding: 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .intro-card { background: var(--bg-surface); border-left: 5px solid var(--brand-primary); padding: 25px; border-radius: 0 15px 15px 0; margin: 30px 0; }
        .intro-card h1 { text-align: left; font-size: 32px; margin-bottom: 10px; color: var(--brand-primary); }
        .intro-card p { font-size: 16px; color: var(--text-body); }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 20px 0; }
        .payment-item { background: var(--bg-card); padding: 15px; border-radius: 10px; text-align: center; border: 1px solid var(--border-medium); font-size: 12px; }
        .payment-item i { display: block; font-size: 24px; color: var(--brand-primary); margin-bottom: 8px; }
        .guide-section { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin: 30px 0; }
        .guide-item { background: var(--bg-surface); padding: 20px; border-radius: 12px; border: 1px solid var(--border-light); }
        .guide-item h3 { text-align: left; margin-bottom: 10px; color: var(--brand-primary); font-size: 18px; }
        .review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin: 30px 0; }
        .review-card { background: var(--bg-card); padding: 20px; border-radius: 15px; border: 1px solid var(--border-medium); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--brand-secondary); }
        .review-user { font-weight: bold; color: var(--text-heading); }
        .review-stars { color: var(--brand-primary); font-size: 14px; margin-bottom: 10px; }
        .review-date { font-size: 12px; color: var(--text-muted); display: block; margin-top: 10px; }
        .win-list { background: var(--bg-surface); border-radius: 15px; padding: 15px; margin: 30px 0; }
        .win-item { display: flex; justify-content: space-between; align-items: center; padding: 12px; border-bottom: 1px solid var(--border-light); font-size: 14px; }
        .win-item:last-child { border-bottom: none; }
        .win-amount { color: var(--color-success); font-weight: bold; }
        .provider-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin: 30px 0; }
        .provider-item { background: var(--bg-card); padding: 20px; text-align: center; border-radius: 10px; font-weight: bold; border: 1px solid var(--brand-primary); color: var(--brand-primary); }
        .faq-section { margin: 30px 0; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: bold; cursor: pointer; display: block; background: var(--bg-card); color: var(--brand-primary); }
        .faq-answer { padding: 15px; font-size: 14px; line-height: 1.6; border-top: 1px solid var(--border-light); }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--bg-surface); display: flex; justify-content: space-around; padding: 10px 0; border-top: 2px solid var(--brand-primary); z-index: 2000; }
        .nav-link { text-align: center; color: var(--text-body); font-size: 12px; text-decoration: none; display: flex; flex-direction: column; align-items: center; gap: 5px; }
        .nav-link i { font-size: 20px; color: var(--brand-primary); }
        footer { background: var(--bg-surface); padding: 40px 0 80px 0; border-top: 2px solid var(--border-medium); }
        footer .contact-bar { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 30px; text-align: center; }
        footer .contact-bar a { color: var(--brand-primary); font-size: 14px; }
        footer .site-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 30px; text-align: center; }
        footer .site-links a { color: var(--text-muted); font-size: 13px; display: block; padding: 5px 0; }
        footer .security-bar { text-align: center; padding: 20px; border-top: 1px solid var(--border-light); font-size: 12px; color: var(--text-muted); }
        footer .security-bar i { color: var(--brand-primary); margin: 0 5px; }
        @media (max-width: 768px) {
            .payment-grid { grid-template-columns: repeat(2, 1fr); }
            .site-links { grid-template-columns: repeat(2, 1fr); }
        }