:root {
            --primary: #FFD700;
            --primary-hover: #FFC107;
            --secondary: #C0C0C0;
            --accent: #E60000;
            --bg-main: #1A1A1A;
            --bg-surface: #2D2D2D;
            --bg-surface-light: #3D3D3D;
            --overlay: rgba(0, 0, 0, 0.7);
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #808080;
            --on-brand: #000000;
            --success: #4CAF50;
            --warning: #FF9800;
            --error: #F44336;
            --info: #2196F3;
            --border-default: #404040;
            --border-active: #FFD700;
            --border-subtle: #333333;
            --font-primary: 'Roboto', 'Segoe UI', Arial, sans-serif;
            --font-heading: 'Montserrat', sans-serif;
            --font-numeric: '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-primary); 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: 2px solid var(--border-active); }
        header .logo-container { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text-primary); }
        header img { width: 25px; height: 25px; border-radius: 4px; }
        header .brand-name { 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: 4px; cursor: pointer; font-weight: 600; transition: 0.3s; }
        .btn-login:hover { background: var(--primary); color: var(--on-brand); }
        .btn-register { background: var(--primary); border: 1px solid var(--primary); color: var(--on-brand); padding: 6px 15px; border-radius: 4px; 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 100px; }
        .banner-box { width: 100%; aspect-ratio: 2/1; overflow: hidden; border-radius: 12px; cursor: pointer; margin-bottom: 25px; box-shadow: 0 4px 15px rgba(0,0,0,0.5); }
        .banner-box img { width: 100%; height: 100%; object-fit: cover; }
        .promo-card { background: linear-gradient(135deg, var(--bg-surface), #444); padding: 25px; border-radius: 15px; text-align: center; border: 1px solid var(--border-default); margin-bottom: 30px; }
        .promo-card h2 { color: var(--primary); margin-bottom: 15px; font-family: var(--font-heading); }
        .promo-card p { color: var(--text-secondary); margin-bottom: 20px; font-size: 16px; }
        .btn-promo { background: var(--accent); color: white; border: none; padding: 15px 35px; font-size: 18px; font-weight: bold; border-radius: 50px; cursor: pointer; text-transform: uppercase; transition: 0.3s; box-shadow: 0 0 20px rgba(230,0,0,0.4); }
        .btn-promo:hover { transform: scale(1.05); background: #ff1a1a; }
        .section-title { font-family: var(--font-heading); font-size: 24px; color: var(--primary); margin: 30px 0 20px; text-align: center; text-transform: uppercase; position: relative; }
        .section-title::after { content: ''; display: block; width: 50px; height: 3px; background: var(--primary); margin: 8px auto; }
        .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: inherit; transition: 0.3s; border: 1px solid var(--border-subtle); }
        .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 { font-size: 14px; padding: 12px; text-align: center; color: var(--text-primary); font-family: var(--font-primary); }
        .intro-card { background: var(--bg-surface); padding: 30px; border-radius: 20px; border-left: 5px solid var(--primary); margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
        .intro-card h1 { font-family: var(--font-heading); font-size: 32px; color: var(--primary); margin-bottom: 15px; text-transform: uppercase; }
        .intro-card p { color: var(--text-secondary); line-height: 1.8; font-size: 16px; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 30px; }
        .payment-item { background: var(--bg-surface-light); padding: 15px; border-radius: 10px; text-align: center; font-size: 12px; color: var(--text-secondary); border: 1px solid var(--border-subtle); }
        .payment-item i { display: block; font-size: 24px; color: var(--primary); margin-bottom: 8px; }
        .guide-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; margin-bottom: 30px; }
        .guide-item { background: var(--bg-surface); padding: 20px; border-radius: 12px; border: 1px solid var(--border-subtle); }
        .guide-item h3 { color: var(--primary); font-size: 18px; margin-bottom: 10px; }
        .guide-item p { color: var(--text-secondary); font-size: 14px; line-height: 1.6; }
        .review-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; margin-bottom: 30px; }
        .review-card { background: var(--bg-surface); 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(--secondary); }
        .review-header .user-name { font-weight: bold; color: var(--text-primary); }
        .review-stars { color: var(--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); }
        .winner-list { background: var(--bg-surface); border-radius: 12px; padding: 10px; margin-bottom: 30px; }
        .winner-row { display: flex; justify-content: space-between; align-items: center; padding: 12px; border-bottom: 1px solid var(--border-subtle); font-size: 14px; }
        .winner-row:last-child { border-bottom: none; }
        .winner-name { color: var(--text-primary); font-weight: 500; }
        .winner-game { color: var(--text-secondary); font-size: 13px; }
        .winner-amount { color: var(--primary); font-weight: bold; font-family: var(--font-numeric); }
        .winner-time { color: var(--text-muted); font-size: 12px; }
        .provider-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-bottom: 30px; }
        .provider-item { background: var(--bg-surface-light); padding: 20px; border-radius: 10px; text-align: center; font-weight: bold; color: var(--primary); border: 1px solid var(--border-default); text-transform: uppercase; }
        .faq-container { display: grid; gap: 15px; margin-bottom: 30px; }
        .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; }
        .faq-item p { color: var(--text-secondary); font-size: 14px; line-height: 1.6; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; height: 65px; background: var(--bg-surface); display: flex; justify-content: space-around; align-items: center; border-top: 2px solid var(--border-active); z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; text-decoration: none; color: var(--text-secondary); font-size: 11px; transition: 0.3s; }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        .nav-item:hover { color: var(--primary); }
        footer { background-color: var(--bg-surface); padding: 40px 15px 80px; border-top: 1px solid var(--border-default); color: var(--text-secondary); }
        footer .contact-section { text-align: center; margin-bottom: 30px; }
        footer .contact-links { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 10px; }
        footer .contact-links a { color: var(--primary); text-decoration: none; font-size: 14px; }
        footer .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 30px; text-align: center; }
        footer .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; display: block; padding: 5px 0; }
        footer .footer-links a:hover { color: var(--primary); }
        footer .security-footer { text-align: center; border-top: 1px solid var(--border-subtle); padding-top: 20px; }
        footer .security-footer img { width: 150px; margin-bottom: 10px; }
        footer .security-footer p { font-size: 12px; color: var(--text-muted); }
        @media (max-width: 600px) {
            .payment-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-links { grid-template-columns: repeat(2, 1fr); }
        }