body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background: linear-gradient(135deg, #1a2a6c, #3a7bd5); color: white; padding: 20px; border-radius: 10px; margin-bottom: 30px; }
        .logo { font-size: 2.5em; font-weight: bold; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
        nav { display: flex; justify-content: space-between; align-items: center; }
        .mobile-menu-btn { display: none; background: #ff6b6b; color: white; border: none; padding: 10px; border-radius: 5px; cursor: pointer; }
        .nav-links { display: flex; gap: 20px; }
        .nav-links a { color: white; text-decoration: none; font-weight: bold; }
        h1 { color: #1a2a6c; margin-bottom: 30px; }
        h2 { color: #3a7bd5; margin: 25px 0 15px; }
        h3 { color: #5a9bd5; margin: 20px 0 10px; }
        .download-btn, .login-btn { display: inline-block; background: #ff6b6b; color: white; padding: 12px 25px; margin: 10px 0; border-radius: 5px; text-decoration: none; font-weight: bold; }
        .download-btn:hover, .login-btn:hover { background: #ff5252; }
        .stats-box { background: #f8f9fa; padding: 20px; border-radius: 8px; margin: 20px 0; }
        .player-review { background: #e9f7fe; padding: 15px; border-radius: 8px; margin: 15px 0; }
        .strategy-section { background: #fff3e0; padding: 20px; border-radius: 8px; margin: 20px 0; }
        footer { background: #333; color: white; padding: 20px; text-align: center; margin-top: 40px; }
        @media (max-width: 768px) {
            .mobile-menu-btn { display: block; }
            .nav-links { display: none; flex-direction: column; position: absolute; top: 100px; left: 20px; right: 20px; background: rgba(26,42,108,0.9); padding: 20px; border-radius: 10px; }
            .nav-links.active { display: flex; }
            .nav-links a { padding: 10px 0; }
        }
