:root {
            --primary: #D4AF37;
            --primary-hover: #FFD700;
            --primary-dark: #B8860B;
            --secondary: #C0C0C0;
            --accent: #FF0000;
            --bg-main: #0B0B0B;
            --bg-surface: #1A1A1A;
            --bg-elevated: #2A2A2A;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-disabled: #666666;
            --border-default: #333333;
            --border-brand: #D4AF37;
            --font-primary: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            --font-heading: 'Montserrat', sans-serif;
            --font-accent: 'Playfair Display', 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; }
        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: 2px solid var(--primary); }
        header .logo-area { display: flex; align-items: center; gap: 10px; text-decoration: none; color: white; }
        header .logo-area img { width: 25px; height: 25px; }
        header .logo-area strong { font-size: 16px; font-weight: normal; }
        header .auth-buttons { display: flex; gap: 10px; }
        .btn-login { background: transparent; border: 1px solid var(--primary); color: var(--primary); padding: 6px 15px; border-radius: 5px; cursor: pointer; font-weight: 600; transition: 0.3s; }
        .btn-login:hover { background: var(--primary); color: black; }
        .btn-register { background: var(--primary); border: none; color: black; padding: 6px 15px; border-radius: 5px; cursor: pointer; font-weight: 600; transition: 0.3s; }
        .btn-register:hover { background: var(--primary-hover); }
        main { max-width: 1000px; margin: 0 auto; padding: 20px 15px; }
        .banner-container { margin-bottom: 25px; border-radius: 15px; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
        .promo-card { background: linear-gradient(135deg, var(--bg-elevated), var(--bg-surface)); border: 2px solid var(--primary); border-radius: 20px; padding: 30px; text-align: center; margin-bottom: 30px; }
        .promo-card h2 { font-family: var(--font-heading); font-size: 28px; margin-bottom: 15px; color: var(--primary); }
        .promo-card p { color: var(--text-secondary); margin-bottom: 25px; font-size: 18px; }
        .btn-bonus { background: var(--primary); color: black; padding: 15px 40px; font-size: 20px; font-weight: bold; border-radius: 50px; border: none; cursor: pointer; text-transform: uppercase; box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4); }
        .section-title { font-family: var(--font-heading); font-size: 24px; margin: 30px 0 20px; text-align: center; border-left: 5px solid var(--primary); padding-left: 15px; text-align: left; }
        .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; color: white; transition: 0.3s; border: 1px solid var(--border-default); }
        .game-card:hover { transform: translateY(-5px); border-color: var(--primary); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 12px; font-size: 16px; text-align: center; font-family: var(--font-primary); }
        .intro-card { background: var(--bg-surface); border-radius: 20px; padding: 30px; text-align: center; border: 1px solid var(--border-brand); margin-bottom: 30px; }
        .intro-card h1 { font-family: var(--font-heading); color: var(--primary); font-size: 32px; margin-bottom: 15px; }
        .intro-card p { color: var(--text-secondary); font-size: 16px; line-height: 1.8; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 30px; }
        .payment-item { background: var(--bg-elevated); border-radius: 10px; padding: 15px; text-align: center; font-size: 14px; color: var(--text-secondary); border: 1px solid var(--border-default); }
        .payment-item i { display: block; font-size: 24px; color: var(--primary); margin-bottom: 8px; }
        .guidelines-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-bottom: 30px; }
        .guide-item { background: var(--bg-surface); padding: 20px; border-radius: 15px; border-bottom: 3px solid var(--primary); }
        .guide-item h3 { font-size: 18px; margin-bottom: 10px; color: var(--primary); }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }
        .review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-bottom: 30px; }
        .review-card { background: var(--bg-elevated); padding: 20px; border-radius: 15px; position: relative; }
        .review-header { display: flex; align-items: center; gap: 15px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--secondary); }
        .review-header .user-name { font-weight: bold; font-size: 16px; }
        .review-stars { color: #FFD700; margin-bottom: 10px; }
        .review-text { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; }
        .review-date { font-size: 12px; color: var(--text-disabled); }
        .winning-list { background: var(--bg-surface); border-radius: 15px; padding: 20px; margin-bottom: 30px; }
        .winning-item { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border-default); font-size: 14px; }
        .winning-item:last-child { border: none; }
        .win-amount { color: var(--primary); font-weight: bold; }
        .provider-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-bottom: 30px; }
        .provider-item { background: var(--bg-elevated); padding: 20px; text-align: center; border-radius: 10px; font-weight: bold; border: 1px solid var(--border-default); color: var(--primary); }
        .faq-section { margin-bottom: 30px; }
        .faq-item { background: var(--bg-surface); border-radius: 10px; margin-bottom: 10px; overflow: hidden; border: 1px solid var(--border-default); }
        .faq-question { padding: 15px; font-weight: bold; cursor: pointer; background: var(--bg-elevated); color: var(--primary); }
        .faq-answer { padding: 15px; 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; padding: 10px 0; border-top: 2px solid var(--primary); z-index: 1000; }
        .nav-link { display: flex; flex-direction: column; align-items: center; text-decoration: none; color: var(--text-secondary); font-size: 12px; transition: 0.3s; }
        .nav-link i { font-size: 20px; margin-bottom: 5px; }
        .nav-link:hover { color: var(--primary); }
        footer { background: var(--bg-surface); padding: 40px 20px 100px; border-top: 1px solid var(--border-default); }
        .footer-contact { text-align: center; margin-bottom: 30px; }
        .contact-links { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 10px; }
        .contact-links a { color: var(--text-secondary); text-decoration: none; font-size: 14px; }
        .contact-links a:hover { color: var(--primary); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 14px; }
        .footer-links a:hover { color: var(--primary); }
        .security-footer { text-align: center; border-top: 1px solid var(--border-default); padding-top: 20px; }
        .security-footer img { height: 40px; margin: 10px; vertical-align: middle; }
        .security-footer p { font-size: 12px; color: var(--text-disabled); margin-top: 10px; }
        @media (max-width: 600px) {
            .payment-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-links { grid-template-columns: repeat(2, 1fr); }
        }