:root {
            --primary: #FFD700;
            --secondary: #C0C0C0;
            --accent: #FF0000;
            --highlight: #FFCC00;
            --bg-main: #0B0B0B;
            --bg-surface: #1A1A1A;
            --bg-card: #262626;
            --bg-footer: #050505;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #666666;
            --text-inverse: #000000;
            --success: #00C853;
            --warning: #FFAB00;
            --error: #D50000;
            --info: #2196F3;
            --border-def: #333333;
            --border-strong: #4D4D4D;
            --border-brand: #FFD700;
            --font-main: 'Poppins', sans-serif;
            --font-heading: 'Montserrat', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: var(--bg-main); color: var(--text-primary); font-family: var(--font-main); line-height: 1.5; overflow-x: hidden; }
        header { background-color: var(--bg-surface); padding: 10px 20px; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid var(--border-def); }
        header .logo-area { display: flex; align-items: center; gap: 10px; }
        header .logo-area img { width: 25px; height: 25px; object-fit: cover; }
        header .logo-area strong { font-size: 16px; font-weight: normal; color: var(--text-primary); }
        header .auth-buttons { display: flex; gap: 10px; }
        .btn-login { background: transparent; border: 1px solid var(--primary); color: var(--primary); padding: 6px 15px; border-radius: 4px; cursor: pointer; font-weight: 500; transition: 0.3s; }
        .btn-register { background: var(--primary); border: none; color: var(--text-inverse); padding: 6px 15px; border-radius: 4px; cursor: pointer; font-weight: 600; transition: 0.3s; }
        .btn-login:hover, .btn-register:hover { opacity: 0.8; }
        main { max-width: 1200px; margin: 0 auto; padding: 20px; }
        .banner-container { width: 100%; margin-bottom: 30px; cursor: pointer; }
        .banner-container img { width: 100%; aspect-ratio: 2/1; object-fit: cover; border-radius: 15px; }
        .promo-card { background: linear-gradient(135deg, var(--bg-card), #333); padding: 30px; border-radius: 20px; text-align: center; border: 2px solid var(--border-brand); margin-bottom: 40px; }
        .promo-card h2 { font-family: var(--font-heading); font-size: 30px; color: var(--primary); margin-bottom: 15px; }
        .promo-card p { color: var(--text-secondary); margin-bottom: 25px; font-size: 18px; }
        .btn-bonus { background: var(--accent); color: white; padding: 15px 30px; font-size: 20px; font-weight: bold; border-radius: 50px; border: none; cursor: pointer; text-transform: uppercase; box-shadow: 0 4px 15px rgba(255,0,0,0.4); }
        .section-title { font-family: var(--font-heading); font-size: 28px; margin: 40px 0 20px; text-align: center; position: relative; }
        .section-title::after { content: ''; display: block; width: 60px; height: 4px; background: var(--primary); margin: 10px auto; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
        .game-card { background: var(--bg-card); border-radius: 12px; overflow: hidden; text-decoration: none; transition: transform 0.3s; border: 1px solid var(--border-def); }
        .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 { color: var(--text-primary); font-size: 16px; padding: 12px; text-align: center; font-family: var(--font-heading); }
        .intro-card { background: var(--bg-surface); padding: 40px; border-radius: 20px; text-align: center; border: 1px solid var(--border-strong); margin: 40px 0; }
        .intro-card h1 { font-family: var(--font-heading); font-size: 42px; color: var(--primary); margin-bottom: 20px; }
        .intro-card p { color: var(--text-secondary); font-size: 18px; max-width: 800px; margin: 0 auto; }
        .article-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
        .article-card { background: var(--bg-card); border-radius: 15px; overflow: hidden; text-decoration: none; border: 1px solid var(--border-def); transition: 0.3s; }
        .article-card:hover { border-color: var(--primary); }
        .article-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
        .article-content { padding: 20px; }
        .article-content h3 { color: var(--primary); font-size: 18px; margin-bottom: 10px; font-family: var(--font-heading); }
        .article-content p { color: var(--text-secondary); font-size: 14px; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .payment-item { background: var(--bg-surface); padding: 15px; border-radius: 10px; border: 1px solid var(--border-def); color: var(--text-primary); font-weight: 500; }
        .payment-item i { display: block; font-size: 24px; color: var(--primary); margin-bottom: 8px; }
        .guidelines-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; margin-bottom: 40px; }
        .guideline-item { background: var(--bg-card); padding: 20px; border-radius: 12px; border-left: 4px solid var(--primary); }
        .guideline-item h3 { font-size: 18px; margin-bottom: 10px; color: var(--primary); }
        .guideline-item p { font-size: 14px; color: var(--text-secondary); }
        .review-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
        .review-card { background: var(--bg-surface); padding: 20px; border-radius: 15px; border: 1px solid var(--border-def); }
        .review-header { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
        .review-header i { font-size: 30px; color: var(--secondary); }
        .review-user { font-weight: bold; font-size: 16px; }
        .review-stars { color: var(--primary); font-size: 14px; }
        .review-body { color: var(--text-secondary); font-size: 14px; margin-bottom: 10px; }
        .review-date { font-size: 12px; color: var(--text-muted); }
        .winning-list { background: var(--bg-surface); border-radius: 15px; overflow: hidden; }
        .winning-row { display: grid; grid-template-columns: 1fr 2fr 1fr 1fr; padding: 12px 20px; border-bottom: 1px solid var(--border-def); font-size: 14px; }
        .winning-row:nth-child(even) { background: var(--bg-card); }
        .win-amount { color: var(--success); font-weight: bold; }
        .provider-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
        .provider-item { background: var(--bg-card); padding: 20px; text-align: center; border-radius: 10px; border: 1px solid var(--border-strong); font-weight: bold; font-family: var(--font-heading); font-size: 18px; }
        .faq-section { max-width: 800px; margin: 0 auto; }
        .faq-item { background: var(--bg-card); margin-bottom: 15px; border-radius: 10px; overflow: hidden; border: 1px solid var(--border-def); }
        .faq-question { padding: 20px; background: var(--bg-surface); color: var(--primary); font-weight: 600; cursor: pointer; display: block; }
        .faq-answer { padding: 20px; color: var(--text-secondary); font-size: 15px; line-height: 1.6; }
        .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(--primary); z-index: 2000; }
        .nav-link { text-decoration: none; color: var(--text-secondary); text-align: center; font-size: 12px; transition: 0.3s; }
        .nav-link i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-link:hover { color: var(--primary); }
        footer { background-color: var(--bg-footer); padding: 40px 20px; color: var(--text-secondary); border-top: 1px solid var(--border-def); }
        .footer-contact { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-bottom: 30px; border-bottom: 1px solid var(--border-def); padding-bottom: 20px; }
        .footer-contact a { color: var(--primary); text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 30px; }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; transition: 0.3s; }
        .footer-links a:hover { color: var(--primary); }
        .footer-security { text-align: center; border-top: 1px solid var(--border-def); padding-top: 20px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 10px; color: var(--primary); font-size: 24px; }
        .footer-security p { font-size: 12px; color: var(--text-muted); }
        @media (max-width: 768px) {
            .payment-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-links { grid-template-columns: repeat(2, 1fr); }
            .winning-row { grid-template-columns: 1fr 1fr; gap: 10px; }
            .winning-row span:nth-child(3), .winning-row span:nth-child(4) { display: block; font-size: 12px; }
        }