:root {
            --brand-primary: #FFD700;
            --brand-primary-hover: #FFC900;
            --brand-secondary: #B22222;
            --brand-accent: #00FFC8;
            --bg-main: #0B0D17;
            --bg-surface: #1A1D29;
            --bg-surface-light: #25293D;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --text-muted: #6B7280;
            --text-inverse: #000000;
            --semantic-success: #22C55E;
            --semantic-warning: #F59E0B;
            --semantic-error: #EF4444;
            --semantic-info: #3B82F6;
            --border-default: #2D3142;
            --border-light: #3F445E;
            --border-highlight: #FFD700;
            --font-primary: 'Inter', 'Roboto', sans-serif;
            --font-secondary: 'Poppins', sans-serif;
            --font-accent: 'Montserrat', sans-serif;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { background-color: var(--bg-main); color: var(--text-primary); font-family: var(--font-primary); line-height: 1.5; overflow-x: hidden; }
        header { background-color: var(--bg-surface); padding: 10px 20px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid var(--border-default); display: flex; justify-content: space-between; align-items: center; height: 60px; }
        header .logo-area { display: flex; align-items: center; gap: 10px; }
        header img { width: 25px; height: 25px; border-radius: 4px; }
        header strong { font-size: 16px; font-weight: normal; color: var(--text-primary); }
        header .auth-btns { display: flex; gap: 10px; }
        .btn-login { background: transparent; border: 1px solid var(--brand-primary); color: var(--brand-primary); padding: 6px 15px; border-radius: 5px; cursor: pointer; font-family: var(--font-primary); font-size: 14px; transition: 0.3s; }
        .btn-register { background: var(--brand-primary); border: none; color: var(--text-inverse); padding: 6px 15px; border-radius: 5px; cursor: pointer; font-family: var(--font-primary); font-size: 14px; font-weight: 600; transition: 0.3s; }
        .btn-login:hover { background: var(--brand-primary); color: var(--text-inverse); }
        .btn-register:hover { background: var(--brand-primary-hover); }
        main { max-width: 1200px; margin: 0 auto; padding: 20px 15px; }
        .hero-banner { width: 100%; aspect-ratio: 2/1; border-radius: 15px; overflow: hidden; cursor: pointer; margin-bottom: 20px; border: 2px solid var(--border-default); }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .promo-card { background: linear-gradient(135deg, var(--bg-surface), var(--brand-secondary)); border-radius: 20px; padding: 30px; text-align: center; margin-bottom: 30px; border: 1px solid var(--border-highlight); box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
        .promo-card h2 { font-family: var(--font-secondary); font-size: 28px; color: var(--brand-primary); margin-bottom: 15px; }
        .promo-card p { color: var(--text-secondary); font-size: 16px; margin-bottom: 20px; max-width: 700px; margin-inline: auto; }
        .btn-bonus { background: var(--brand-primary); color: var(--text-inverse); padding: 15px 40px; border-radius: 50px; text-decoration: none; font-weight: 800; font-size: 18px; display: inline-block; transition: 0.3s; cursor: pointer; border: none; box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4); }
        .btn-bonus:hover { transform: scale(1.05); background: var(--brand-primary-hover); }
        .section-title { font-family: var(--font-secondary); font-size: 24px; margin: 30px 0 20px; padding-left: 10px; border-left: 4px solid var(--brand-primary); }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-bottom: 30px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; text-decoration: none; transition: 0.3s; border: 1px solid var(--border-default); }
        .game-card:hover { transform: translateY(-5px); border-color: var(--brand-primary); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { color: var(--text-primary); font-size: 14px; text-align: center; padding: 10px; font-family: var(--font-primary); }
        .intro-card { background: var(--bg-surface); border-radius: 20px; padding: 30px; border: 1px solid var(--border-light); text-align: center; margin-bottom: 30px; }
        .intro-card h1 { font-family: var(--font-accent); font-size: 32px; color: var(--brand-primary); margin-bottom: 15px; }
        .intro-card p { color: var(--text-secondary); font-size: 16px; line-height: 1.8; }
        .article-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin-bottom: 30px; }
        .article-card { background: var(--bg-surface-light); border-radius: 15px; overflow: hidden; text-decoration: none; transition: 0.3s; border: 1px solid var(--border-default); }
        .article-card:hover { border-color: var(--brand-primary); }
        .article-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
        .article-content { padding: 15px; }
        .article-content h3 { color: var(--text-primary); font-size: 18px; margin-bottom: 10px; font-family: var(--font-secondary); }
        .article-content p { color: var(--text-secondary); font-size: 14px; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 30px; }
        .payment-item { background: var(--bg-surface); padding: 15px; border-radius: 10px; text-align: center; border: 1px solid var(--border-default); display: flex; flex-direction: column; align-items: center; gap: 8px; }
        .payment-item i { font-size: 24px; color: var(--brand-primary); }
        .payment-item span { font-size: 12px; color: var(--text-secondary); }
        .guidelines-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; margin-bottom: 30px; }
        .guide-card { background: var(--bg-surface); padding: 20px; border-radius: 15px; border-left: 4px solid var(--brand-primary); }
        .guide-card h3 { color: var(--brand-primary); font-size: 18px; margin-bottom: 10px; }
        .guide-card p { color: var(--text-secondary); font-size: 14px; }
        .review-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; margin-bottom: 30px; }
        .review-card { background: var(--bg-surface-light); padding: 20px; border-radius: 15px; border: 1px solid var(--border-default); }
        .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-secondary); }
        .review-user { font-weight: 600; color: var(--text-primary); }
        .review-stars { color: var(--brand-primary); font-size: 14px; margin-bottom: 10px; }
        .review-text { color: var(--text-secondary); font-size: 14px; margin-bottom: 10px; font-style: italic; }
        .review-date { font-size: 12px; color: var(--text-muted); text-align: right; }
        .win-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 15px; margin-bottom: 30px; }
        .win-card { background: linear-gradient(45deg, var(--bg-surface), #2a2e45); padding: 15px; border-radius: 12px; border: 1px solid var(--border-highlight); text-align: center; }
        .win-card .user { font-weight: bold; color: var(--text-primary); display: block; margin-bottom: 5px; }
        .win-card .game { font-size: 13px; color: var(--text-secondary); display: block; }
        .win-card .amount { font-size: 20px; color: var(--brand-primary); font-weight: 800; display: block; margin: 5px 0; }
        .win-card .time { font-size: 11px; color: var(--text-muted); }
        .providers-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 30px; }
        .provider-item { background: var(--bg-surface-light); padding: 15px; text-align: center; border-radius: 10px; font-weight: 600; border: 1px solid var(--border-default); color: var(--text-primary); }
        .faq-container { display: grid; gap: 15px; margin-bottom: 30px; }
        .faq-item { background: var(--bg-surface); border-radius: 10px; padding: 20px; border: 1px solid var(--border-default); }
        .faq-item h3 { color: var(--brand-primary); font-size: 18px; margin-bottom: 10px; }
        .faq-item p { 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: 1001; }
        .nav-link { text-decoration: none; display: flex; flex-direction: column; align-items: center; gap: 5px; color: var(--text-secondary); font-size: 11px; transition: 0.3s; }
        .nav-link i { font-size: 20px; }
        .nav-link:hover { color: var(--brand-primary); }
        footer { background: var(--bg-surface); padding: 40px 20px 100px; border-top: 1px solid var(--border-default); text-align: center; }
        .footer-contact { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; margin-bottom: 30px; }
        .footer-contact a { color: var(--text-secondary); text-decoration: none; font-size: 14px; transition: 0.3s; }
        .footer-contact a:hover { color: var(--brand-primary); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; max-width: 600px; margin: 0 auto 30px; text-align: center; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; display: block; padding: 5px 0; transition: 0.3s; }
        .footer-links a:hover { color: var(--brand-primary); }
        .security-box { background: var(--bg-main); padding: 20px; border-radius: 15px; border: 1px solid var(--border-default); max-width: 800px; margin: 0 auto; }
        .security-seals { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; color: var(--brand-primary); font-size: 24px; }
        .security-text { font-size: 12px; color: var(--text-muted); line-height: 1.6; }
        @media (max-width: 768px) {
            .payment-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-links { grid-template-columns: repeat(2, 1fr); }
            .providers-grid { grid-template-columns: repeat(2, 1fr); }
        }