:root {
            --primary: #D4AF37;
            --primary-hover: #FFD700;
            --secondary: #B8860B;
            --accent: #FF4500;
            --bg-main: #1A1A1A;
            --bg-surface: #2D2D2D;
            --bg-card: #333333;
            --text-primary: #FFFFFF;
            --text-secondary: #BDBDBD;
            --text-muted: #888888;
            --text-on-brand: #000000;
            --success: #4CAF50;
            --warning: #FFC107;
            --error: #F44336;
            --info: #2196F3;
            --border-default: #444444;
            --border-highlight: #D4AF37;
            --border-subtle: #3D3D3D;
            --font-heading: 'Montserrat', 'Segoe UI', Roboto, Arial, sans-serif;
            --font-body: 'Roboto', 'Segoe UI', Arial, sans-serif;
            --font-accent: 'Oswald', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: var(--bg-main); color: var(--text-primary); font-family: var(--font-body); line-height: 1.5; overflow-x: hidden; }
        header { background-color: var(--bg-surface); height: 60px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid var(--border-highlight); }
        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-buttons { display: flex; gap: 10px; }
        .btn-auth { padding: 6px 15px; border-radius: 5px; cursor: pointer; font-family: var(--font-heading); font-weight: 600; transition: 0.3s; border: none; font-size: 14px; }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--primary); }
        .btn-login:hover { background: var(--primary); color: var(--text-on-brand); }
        .btn-reg { background: var(--primary); color: var(--text-on-brand); }
        .btn-reg:hover { background: var(--primary-hover); }
        main { padding-bottom: 80px; }
        .banner-container { width: 100%; max-width: 1200px; margin: 0 auto; cursor: pointer; }
        .banner-container img { width: 100%; aspect-ratio: 2/1; object-fit: cover; display: block; }
        .promo-section { background: linear-gradient(45deg, var(--bg-surface), #3d3d3d); padding: 30px 20px; text-align: center; border-radius: 0 0 20px 20px; margin-bottom: 30px; border: 1px solid var(--border-subtle); }
        .promo-section h2 { font-family: var(--font-heading); color: var(--primary); font-size: 28px; margin-bottom: 15px; }
        .promo-section p { color: var(--text-secondary); font-size: 16px; margin-bottom: 20px; }
        .btn-cta { background: var(--accent); color: white; padding: 15px 40px; font-size: 20px; font-weight: bold; border-radius: 30px; text-transform: uppercase; cursor: pointer; border: none; box-shadow: 0 4px 15px rgba(255,69,0,0.4); transition: 0.3s; }
        .btn-cta:hover { transform: scale(1.05); background: #ff5722; }
        .section-title { font-family: var(--font-heading); text-align: center; font-size: 24px; margin: 40px 0 20px; color: var(--primary); text-transform: uppercase; position: relative; }
        .section-title::after { content: ''; display: block; width: 60px; height: 3px; background: var(--primary); margin: 10px auto; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; padding: 0 15px; max-width: 1200px; margin: 0 auto; }
        .game-card { background: var(--bg-card); border-radius: 12px; overflow: hidden; text-decoration: none; transition: 0.3s; border: 1px solid var(--border-subtle); }
        .game-card:hover { border-color: var(--primary); transform: translateY(-5px); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { font-size: 14px; color: var(--text-primary); text-align: center; padding: 10px; font-family: var(--font-heading); }
        .intro-card { background: linear-gradient(135deg, var(--bg-surface), var(--bg-card)); max-width: 1200px; margin: 40px auto; padding: 30px; border-radius: 20px; border-left: 5px solid var(--primary); text-align: center; }
        .intro-card h1 { font-family: var(--font-heading); color: var(--primary); font-size: 32px; margin-bottom: 15px; text-transform: uppercase; }
        .intro-card p { color: var(--text-secondary); font-size: 16px; max-width: 800px; margin: 0 auto; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 0 15px; max-width: 1200px; margin: 0 auto; }
        .payment-item { background: var(--bg-surface); padding: 15px; text-align: center; border-radius: 10px; border: 1px solid var(--border-subtle); color: var(--text-secondary); font-size: 13px; }
        .payment-item i { display: block; font-size: 24px; color: var(--primary); margin-bottom: 8px; }
        .guide-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; padding: 0 15px; max-width: 1200px; margin: 0 auto; }
        .guide-item { background: var(--bg-surface); padding: 20px; border-radius: 15px; border: 1px solid var(--border-subtle); }
        .guide-item h3 { color: var(--primary); margin-bottom: 10px; font-family: var(--font-heading); }
        .guide-item p { color: var(--text-secondary); font-size: 14px; }
        .review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; padding: 0 15px; max-width: 1200px; margin: 0 auto; }
        .review-card { background: var(--bg-card); padding: 20px; border-radius: 15px; border: 1px solid var(--border-subtle); }
        .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--primary); }
        .review-user { font-weight: 600; color: var(--text-primary); }
        .review-stars { color: var(--warning); font-size: 12px; margin-bottom: 10px; }
        .review-text { color: var(--text-secondary); font-size: 14px; margin-bottom: 10px; }
        .review-date { font-size: 12px; color: var(--text-muted); }
        .win-list { background: var(--bg-surface); max-width: 1200px; margin: 0 auto; padding: 20px; border-radius: 15px; border: 1px solid var(--border-highlight); }
        .win-item { display: flex; justify-content: space-between; align-items: center; padding: 12px; border-bottom: 1px solid var(--border-subtle); font-size: 14px; }
        .win-item:last-child { border-bottom: none; }
        .win-user { color: var(--text-secondary); }
        .win-game { color: var(--primary); font-weight: 500; }
        .win-amount { color: var(--success); font-weight: bold; }
        .win-time { color: var(--text-muted); font-size: 12px; }
        .provider-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; padding: 0 15px; max-width: 1200px; margin: 0 auto; }
        .provider-item { background: var(--bg-card); padding: 20px; text-align: center; border-radius: 10px; font-weight: bold; color: var(--primary); border: 1px solid var(--border-subtle); text-transform: uppercase; }
        .faq-grid { display: grid; grid-template-columns: 1fr; gap: 15px; padding: 0 15px; max-width: 1200px; margin: 0 auto; }
        .faq-item { background: var(--bg-surface); padding: 20px; border-radius: 12px; border: 1px solid var(--border-subtle); }
        .faq-item h3 { color: var(--primary); font-size: 16px; margin-bottom: 10px; font-family: var(--font-heading); }
        .faq-item p { color: var(--text-secondary); font-size: 14px; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; height: 65px; background: var(--bg-surface); display: flex; justify-content: space-around; align-items: center; z-index: 2000; border-top: 2px solid var(--primary); }
        .nav-item { text-decoration: none; color: var(--text-secondary); display: flex; flex-direction: column; align-items: center; font-size: 12px; transition: 0.3s; }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        .nav-item:hover { color: var(--primary); }
        footer { background: var(--bg-surface); padding: 40px 15px 100px; border-top: 1px solid var(--border-default); }
        .footer-contact { text-align: center; margin-bottom: 30px; }
        .footer-contact p { font-weight: bold; color: var(--primary); margin-bottom: 15px; }
        .footer-links-row { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 30px; }
        .footer-links-row a { color: var(--text-secondary); text-decoration: none; font-size: 14px; transition: 0.3s; }
        .footer-links-row a:hover { color: var(--primary); }
        .footer-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto 40px; }
        .footer-col { display: flex; flex-direction: column; gap: 10px; }
        .footer-col a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: 0.3s; }
        .footer-col a:hover { color: var(--primary); }
        .security-section { text-align: center; max-width: 1200px; margin: 0 auto; padding-top: 30px; border-top: 1px solid var(--border-subtle); }
        .security-seals { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; color: var(--primary); font-size: 24px; }
        .security-text { color: var(--text-muted); font-size: 13px; line-height: 1.8; }
        @media (max-width: 768px) {
            .payment-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-columns { grid-template-columns: repeat(2, 1fr); }
        }